본문 바로가기
JAVA/백준

[Java] 백준 1753 최단경로 - 다익스트라(1)

by 푸_푸 2022. 12. 8.
728x90

백준 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.*;
import java.util.*;
public class Main {
	public static int V, E, K;
	public static int distance[];
	public static boolean visited[];
	public static ArrayList<Edge> list[];
	public static PriorityQueue<Edge> q = new PriorityQueue<Edge>();
	public static void main(String[] args) throws IOException{
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		StringTokenizer st;
		st = new StringTokenizer(br.readLine());
		V = Integer.parseInt(st.nextToken());
		E = Integer.parseInt(st.nextToken());
		K = Integer.parseInt(br.readLine());
		distance = new int[V + 1];
		visited = new boolean[V + 1];
		list = new ArrayList[V + 1];
		for (int i = 1; i <= V; i++) {
			list[i] = new ArrayList<Edge>();
		}
		for (int i = 0; i <= V; i++) {
			distance[i] = Integer.MAX_VALUE;
		}
		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());
			list[u].add(new Edge(v, w));
		}
		q.add(new Edge(K, 0));
		distance[K] = 0;
		while (!q.isEmpty()) {
			Edge current = q.poll();
			int c_v = current.vertex;
			if (visited[c_v]) continue;
			visited[c_v] = true;
			for (int i = 0; i < list[c_v].size(); i++) {
				Edge tmp = list[c_v].get(i);
				int next = tmp.vertex;
				int value = tmp.value;
				if (distance[next] > distance[c_v] + value) {
					distance[next] = value + distance[c_v];
					q.add(new Edge(next, distance[next]));
				}
		}}
	for(int i = 1; i <= V; i++) {
		if  (visited[i])
			System.out.println(distance[i]);
		else
			System.out.println("INF");
	}}}
class Edge implements Comparable<Edge> {
	int vertex, value;
	Edge(int vertex, int value) {
		this.vertex = vertex;
		this.value = value;
	}
	public int compareTo(Edge e) {
		if (this.value > e.value) return 1;
		else return -1;
	}
}

예제

5 6
1
5 1 1
1 2 2
1 3 3
2 3 4
2 4 5
3 4 6

결과

백준 1753 최단경로

 

 

1753번: 최단경로

첫째 줄에 정점의 개수 V와 간선의 개수 E가 주어진다. (1 ≤ V ≤ 20,000, 1 ≤ E ≤ 300,000) 모든 정점에는 1부터 V까지 번호가 매겨져 있다고 가정한다. 둘째 줄에는 시작 정점의 번호 K(1 ≤ K ≤ V)가

www.acmicpc.net

 

728x90

댓글