結果

問題 No.1565 Union
ユーザー tentententen
提出日時 2021-06-28 16:53:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,472 ms / 2,000 ms
コード長 2,123 bytes
コンパイル時間 5,292 ms
コンパイル使用メモリ 78,896 KB
実行使用メモリ 103,200 KB
最終ジャッジ日時 2024-12-20 20:12:10
合計ジャッジ時間 26,957 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
50,188 KB
testcase_01 AC 60 ms
49,952 KB
testcase_02 AC 62 ms
50,096 KB
testcase_03 AC 62 ms
50,356 KB
testcase_04 AC 61 ms
50,080 KB
testcase_05 AC 63 ms
50,280 KB
testcase_06 AC 62 ms
50,056 KB
testcase_07 AC 61 ms
50,120 KB
testcase_08 AC 58 ms
50,352 KB
testcase_09 AC 62 ms
50,096 KB
testcase_10 AC 462 ms
66,164 KB
testcase_11 AC 792 ms
82,692 KB
testcase_12 AC 745 ms
70,884 KB
testcase_13 AC 374 ms
65,856 KB
testcase_14 AC 791 ms
78,096 KB
testcase_15 AC 1,413 ms
103,036 KB
testcase_16 AC 1,066 ms
98,880 KB
testcase_17 AC 1,239 ms
102,964 KB
testcase_18 AC 1,364 ms
102,984 KB
testcase_19 AC 1,472 ms
103,200 KB
testcase_20 AC 911 ms
102,156 KB
testcase_21 AC 943 ms
102,096 KB
testcase_22 AC 944 ms
102,296 KB
testcase_23 AC 932 ms
102,108 KB
testcase_24 AC 944 ms
102,000 KB
testcase_25 AC 1,007 ms
102,236 KB
testcase_26 AC 983 ms
102,180 KB
testcase_27 AC 847 ms
92,316 KB
testcase_28 AC 1,051 ms
102,284 KB
testcase_29 AC 957 ms
102,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int m = sc.nextInt();
        ArrayList<ArrayList<Integer>> graph = new ArrayList<>();
        for (int i = 0; i < n; i++) {
            graph.add(new ArrayList<>());
        }
        for (int i = 0; i < m; i++) {
            int a = sc.nextInt() - 1;
            int b = sc.nextInt() - 1;
            graph.get(a).add(b);
            graph.get(b).add(a);
        }
        PriorityQueue<Path> queue = new PriorityQueue<>();
        queue.add(new Path(0, 0));
        int[] costs = new int[n];
        Arrays.fill(costs, Integer.MAX_VALUE);
        while (queue.size() > 0) {
            Path p = queue.poll();
            if (costs[p.idx] <= p.value) {
                continue;
            }
            costs[p.idx] = p.value;
            for (int x : graph.get(p.idx)) {
                queue.add(new Path(x, p.value + 1));
            }
        }
        if (costs[n - 1] == Integer.MAX_VALUE) {
            System.out.println(-1);
        } else {
            System.out.println(costs[n - 1]);
        }
    }
    
    static class Path implements Comparable<Path> {
        int idx;
        int value;
        
        public Path(int idx, int value) {
            this.idx = idx;
            this.value = value;
        }
        
        public int compareTo(Path another) {
            return value - another.value;
        }
    }
}


class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0