[BOJ] 백준 1753 - 최단경로

note.JW·2021년 3월 24일
0

Algorithm

목록 보기
7/10
post-thumbnail

1753 번 문제 풀이

using Java 11

1753 문제 보기

package BOJ;
import java.io.*;
import java.util.*;

public class boj1753 {
	static class Node implements Comparable<Node>{
	    int end, weight;
	    public Node(int end,int weight){
	        this.end = end;
	        this.weight = weight;
	    }

	    @Override
	    public int compareTo(Node o) {
	        return this.weight - o.weight;
	    }
	}
	
	public static int v, e;
	public static int s;
	public static int[] dis;
	public static int[] visited;
	public static ArrayList<ArrayList<Node>> map = new ArrayList<>();
	public static void main(String args[]) throws IOException{
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		StringTokenizer st = new StringTokenizer(br.readLine());
		v = Integer.parseInt(st.nextToken());
		e = Integer.parseInt(st.nextToken());
		s = Integer.parseInt(br.readLine());
		for(int i=0; i < v+1; i++){
            map.add(new ArrayList<>());
        }
		for(int i = 0; i < e; i++) {
			st = new StringTokenizer(br.readLine());
			int a = Integer.parseInt(st.nextToken());
			int b = Integer.parseInt(st.nextToken());
			int c = Integer.parseInt(st.nextToken());
			map.get(a).add(new Node(b, c));
		}
		dis = new int[v+1];
		Arrays.fill(dis, Integer.MAX_VALUE);
		visited = new int[v+1];
		dijkstra(s);
		
		StringBuilder sb = new StringBuilder();
		for(int i = 1; i < dis.length; i++) {
			if(dis[i] == Integer.MAX_VALUE) {
				sb.append("INF\n");
				continue;
			}
			sb.append(dis[i] + "\n");
		}
		System.out.print(sb);
		
	}
	
	public static void dijkstra(int start) {
		PriorityQueue<Node> pq = new PriorityQueue<>();
		pq.add(new Node(start, 0));
		dis[start] = 0;
		
		while(!pq.isEmpty()) {
			Node current = pq.poll();
			int end = current.end;
			int weight = current.weight;
			if(visited[end] == 0) {
				visited[end] = 1;
				ArrayList<Node> arr = map.get(end);
				for(int i = 0; i < arr.size(); i++) {
					Node tmp = arr.get(i);
					if(tmp.weight + dis[end] < dis[tmp.end]) {
						dis[tmp.end] = tmp.weight + dis[end];
						pq.add(new Node(tmp.end, dis[tmp.end]));
					}
				}
			}
		}
	}
}

📍 Node class 구현
edge로 연결된 end node와 edge의 거리 weight를 가지는 node 선언한다.
priority queue 사용을 위해서 weight가 오름차순 정렬이 되도록 comapreTo override가 필요하다.

📍 dist 배열
거리 값을 담고 있는 배열 dist가 작아지는 쪽으로 업데이트 해간다. 현재 노드에서 다음 노드로 가는게 거리가 더 짧을 때에만 이동한다.

⭐️ 다익스트라 가장 기본 문제!

profile
🎆우주란 무엇일까🎆

0개의 댓글

관련 채용 정보