結果

問題 No.1244 Black Segment
ユーザー tentententen
提出日時 2020-12-15 08:44:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,251 ms / 2,000 ms
コード長 1,765 bytes
コンパイル時間 2,239 ms
コンパイル使用メモリ 79,408 KB
実行使用メモリ 74,752 KB
最終ジャッジ日時 2024-09-20 01:28:01
合計ジャッジ時間 31,389 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,200 KB
testcase_01 AC 109 ms
39,956 KB
testcase_02 AC 105 ms
40,168 KB
testcase_03 AC 112 ms
40,672 KB
testcase_04 AC 125 ms
41,148 KB
testcase_05 AC 125 ms
41,176 KB
testcase_06 AC 118 ms
40,812 KB
testcase_07 AC 124 ms
41,196 KB
testcase_08 AC 124 ms
41,200 KB
testcase_09 AC 103 ms
39,716 KB
testcase_10 AC 119 ms
41,284 KB
testcase_11 AC 122 ms
41,360 KB
testcase_12 AC 126 ms
41,496 KB
testcase_13 AC 237 ms
46,932 KB
testcase_14 AC 897 ms
67,704 KB
testcase_15 AC 243 ms
46,160 KB
testcase_16 AC 955 ms
65,340 KB
testcase_17 AC 224 ms
46,656 KB
testcase_18 AC 878 ms
66,344 KB
testcase_19 AC 1,104 ms
71,976 KB
testcase_20 AC 1,028 ms
71,816 KB
testcase_21 AC 905 ms
69,996 KB
testcase_22 AC 1,103 ms
71,672 KB
testcase_23 AC 1,117 ms
71,816 KB
testcase_24 AC 1,148 ms
72,032 KB
testcase_25 AC 1,047 ms
71,888 KB
testcase_26 AC 1,104 ms
71,588 KB
testcase_27 AC 1,025 ms
73,008 KB
testcase_28 AC 1,167 ms
72,448 KB
testcase_29 AC 1,106 ms
72,104 KB
testcase_30 AC 1,063 ms
72,028 KB
testcase_31 AC 1,138 ms
71,000 KB
testcase_32 AC 1,025 ms
72,228 KB
testcase_33 AC 1,088 ms
72,040 KB
testcase_34 AC 1,251 ms
73,680 KB
testcase_35 AC 1,065 ms
73,660 KB
testcase_36 AC 1,034 ms
74,752 KB
testcase_37 AC 1,172 ms
74,368 KB
testcase_38 AC 1,113 ms
72,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int m = sc.nextInt();
        int a = sc.nextInt();
        int b = sc.nextInt();
        ArrayList<ArrayList<Integer>> graph = new ArrayList<>();
        for (int i = 0; i <= n + 1; i++) {
            graph.add(new ArrayList<>());
        }
        for (int i = 0; i < m; i++) {
            int x = sc.nextInt();
            int y = sc.nextInt() + 1;
            graph.get(x).add(y);
            graph.get(y).add(x);
        }
        PriorityQueue<Path> queue = new PriorityQueue<>();
        for (int i = 1; i <= a; i++) {
            queue.add(new Path(i, 0));
        }
        int[] costs = new int[n + 2];
        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));
            }
        }
        int min = Integer.MAX_VALUE;
        for (int i = b + 1; i < costs.length; i++) {
            min = Math.min(min, costs[i]);
        }
        if (min == Integer.MAX_VALUE) {
            System.out.println(-1);
        } else {
            System.out.println(min);
        }
    }
    
    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;
        }
    }
}
0