ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • [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

     

     

    소스코드

     

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    package 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;
            }
     
            @Override
            public 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));
            // input
            st = new StringTokenizer(br.readLine());
            V = stoi(st.nextToken());
            E = stoi(st.nextToken());
            K = stoi(br.readLine());
     
            init();
     
            // input
            int 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();
     
            // print
            for (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

    댓글

Designed by Tistory.