-
[BOJ] 최단경로Algorithm/BOJ 2020. 8. 25. 19:12
[1753] 최단경로
https://www.acmicpc.net/problem/1753
- 방향 그래프 정보와 시작점이 주어졌을 때 다른 모든 정점으로의 최단 경로를 구하는 프로그램
- 정점의 개수 V와 간선의 개수 E가 주어진다. (1≤V≤20,000, 1≤E≤300,000)
Solution
- 다익스트라 알고리즘을 알고 있다면 쉽게 아이디어를 떠올릴 수 있지만 정점 V의 개수가 최대 2만개로 인접 행렬로 풀이했을 경우 메모리 초과로 틀리게 된다.
- 인접 리스트와 우선순위 큐로 풀이하였다.
- 최단경로 FAQ https://www.acmicpc.net/board/view/34516
소스코드
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101package boj;import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;import java.util.ArrayList;import java.util.Arrays;import java.util.List;import java.util.PriorityQueue;import java.util.StringTokenizer;public class _1753 {/* boj - 최단경로 */static int V, E, K;static List<List<Node>> graph;static int[] distance;static boolean[] visited;static StringTokenizer st;static class Node implements Comparable<Node> {private int idx, weight;public Node(int idx, int weight) {this.idx = idx;this.weight = weight;}@Overridepublic int compareTo(Node o) {return this.weight - o.weight;}}public static void main(String[] args) throws IOException {BufferedReader br = new BufferedReader(new InputStreamReader(System.in));// inputst = new StringTokenizer(br.readLine());V = stoi(st.nextToken());E = stoi(st.nextToken());K = stoi(br.readLine());init();// inputint from, to, weight;for (int i = 0; i < E; i++) {st = new StringTokenizer(br.readLine());from = stoi(st.nextToken());to = stoi(st.nextToken());weight = stoi(st.nextToken());graph.get(from).add(new Node(to, weight));}dijkstra();// printfor (int i = 1; i <= V; i++) {System.out.println((distance[i] == Integer.MAX_VALUE) ? "INF" : distance[i]);}}static void dijkstra() {PriorityQueue<Node> pq = new PriorityQueue<>();Arrays.fill(distance, Integer.MAX_VALUE);distance[K] = 0;pq.add(new Node(K, 0));while (!pq.isEmpty()) {int cur = pq.poll().idx;if (visited[cur])continue;visited[cur] = true;for (Node node : graph.get(cur)) {if (distance[node.idx] > distance[cur] + node.weight) {distance[node.idx] = distance[cur] + node.weight;pq.add(new Node(node.idx, distance[node.idx]));}}}}static void init() {graph = new ArrayList<List<Node>>();distance = new int[V + 1];visited = new boolean[V + 1];for (int i = 0; i <= V; i++) {graph.add(new ArrayList<>());}}static int stoi(String s) {return Integer.valueOf(s);}}cs 'Algorithm > BOJ' 카테고리의 다른 글
[BOJ] 괄호 추가하기 (0) 2020.08.26 [BOJ] 파티 (0) 2020.08.26 [BOJ] 심심한 준규 (0) 2020.07.02 [BOJ] 나는야 포켓몬 마스터 이다솜 (0) 2020.05.27 [BOJ] 회사에 있는 사람 (0) 2020.05.27