작성자 : 고경호
문제 링크 : https://www.acmicpc.net/problem/1753
방향그래프가 주어지면 주어진 시작점에서 다른 모든 정점으로의 최단 경로를 구하는 프로그램을 작성하시오. 단, 모든 간선의 가중치는 10 이하의 자연수이다.
[입력]
첫째 줄에 정점의 개수 V와 간선의 개수 E가 주어진다. (1 ≤ V ≤ 20,000, 1 ≤ E ≤ 300,000) 모든 정점에는 1부터 V까지 번호가 매겨져 있다고 가정한다. 둘째 줄에는 시작 정점의 번호 K(1 ≤ K ≤ V)가 주어진다. 셋째 줄부터 E개의 줄에 걸쳐 각 간선을 나타내는 세 개의 정수 (u, v, w)가 순서대로 주어진다. 이는 u에서 v로 가는 가중치 w인 간선이 존재한다는 뜻이다. u와 v는 서로 다르며 w는 10 이하의 자연수이다. 서로 다른 두 정점 사이에 여러 개의 간선이 존재할 수도 있음에 유의한다.
[출력]
첫째 줄부터 V개의 줄에 걸쳐, i번째 줄에 i번 정점으로의 최단 경로의 경로값을 출력한다. 시작점 자신은 0으로 출력하고, 경로가 존재하지 않는 경우에는 INF를 출력하면 된다.
[예시]
각 간선의 정보를 기록해두고 다익스트라 알고리즘을 이용해 출발지부터 각 정점까지의 최단거리를 미리 구해놓는다.
구해놓은 최단거리를 순서대로 출력한다.
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.*;
public class Main {
static class Edge implements Comparable<Edge> {
int to, weight;
public Edge(int to, int weight) {
this.to = to;
this.weight = weight;
}
public int compareTo(Edge e) {
return this.weight - e.weight;
}
}
static List<Edge>[] graph;
static int[] dist;
static final int INF = Integer.MAX_VALUE;
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
int V = Integer.parseInt(st.nextToken());
int E = Integer.parseInt(st.nextToken());
int K = Integer.parseInt(br.readLine());
graph = new ArrayList[V + 1];
dist = new int[V + 1];
for (int i = 1; i <= V; i++) {
graph[i] = new ArrayList<>();
}
for (int i = 0; i < E; i++) {
st = new StringTokenizer(br.readLine());
int u = Integer.parseInt(st.nextToken());
int v = Integer.parseInt(st.nextToken());
int w = Integer.parseInt(st.nextToken());
graph[u].add(new Edge(v, w));
}
dijkstra(K, V);
for (int i = 1; i <= V; i++) {
if (dist[i] == INF) {
System.out.println("INF");
} else {
System.out.println(dist[i]);
}
}
}
public static void dijkstra(int start, int V) {
PriorityQueue<Edge> pq = new PriorityQueue<>();
Arrays.fill(dist, INF);
dist[start] = 0;
pq.offer(new Edge(start, 0));
while (!pq.isEmpty()) {
Edge current = pq.poll();
int currNode = current.to;
if (current.weight > dist[currNode]) continue;
for (Edge next : graph[currNode]) {
if (dist[next.to] > dist[currNode] + next.weight) {
dist[next.to] = dist[currNode] + next.weight;
pq.offer(new Edge(next.to, dist[next.to]));
}
}
}
}
}