結果

問題 No.1244 Black Segment
ユーザー tentententen
提出日時 2024-08-05 18:06:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 560 ms / 2,000 ms
コード長 2,449 bytes
コンパイル時間 2,652 ms
コンパイル使用メモリ 80,512 KB
実行使用メモリ 68,620 KB
最終ジャッジ日時 2024-08-05 18:06:51
合計ジャッジ時間 18,712 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
36,696 KB
testcase_01 AC 49 ms
37,240 KB
testcase_02 AC 48 ms
37,240 KB
testcase_03 AC 49 ms
37,072 KB
testcase_04 AC 49 ms
37,160 KB
testcase_05 AC 49 ms
37,012 KB
testcase_06 AC 52 ms
37,212 KB
testcase_07 AC 49 ms
37,092 KB
testcase_08 AC 47 ms
37,160 KB
testcase_09 AC 48 ms
36,944 KB
testcase_10 AC 48 ms
36,696 KB
testcase_11 AC 48 ms
37,188 KB
testcase_12 AC 48 ms
37,156 KB
testcase_13 AC 129 ms
40,268 KB
testcase_14 AC 378 ms
54,416 KB
testcase_15 AC 127 ms
40,388 KB
testcase_16 AC 356 ms
56,052 KB
testcase_17 AC 111 ms
40,156 KB
testcase_18 AC 368 ms
55,604 KB
testcase_19 AC 449 ms
58,604 KB
testcase_20 AC 466 ms
60,824 KB
testcase_21 AC 397 ms
57,416 KB
testcase_22 AC 467 ms
61,100 KB
testcase_23 AC 461 ms
61,796 KB
testcase_24 AC 472 ms
61,772 KB
testcase_25 AC 454 ms
62,408 KB
testcase_26 AC 443 ms
60,876 KB
testcase_27 AC 455 ms
62,824 KB
testcase_28 AC 503 ms
62,880 KB
testcase_29 AC 455 ms
61,408 KB
testcase_30 AC 477 ms
61,832 KB
testcase_31 AC 489 ms
61,732 KB
testcase_32 AC 516 ms
62,292 KB
testcase_33 AC 473 ms
61,916 KB
testcase_34 AC 484 ms
62,152 KB
testcase_35 AC 454 ms
64,752 KB
testcase_36 AC 486 ms
64,736 KB
testcase_37 AC 460 ms
65,476 KB
testcase_38 AC 560 ms
68,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int m = sc.nextInt();
        int a = sc.nextInt() - 1;
        int b = sc.nextInt() - 1;
        List<List<Integer>> graph = new ArrayList<>();
        for (int i = 0; i <= n; i++) {
            graph.add(new ArrayList<>());
        }
        for (int i = 0; i < m; i++) {
            int p = sc.nextInt() - 1;
            int q = sc.nextInt();
            graph.get(p).add(q);
            graph.get(q).add(p);
        }
        int[] costs = new int[n + 1];
        Arrays.fill(costs, Integer.MAX_VALUE);
        Deque<Path> deq = new ArrayDeque<>();
        for (int i = 0; i <= a; i++) {
            deq.add(new Path(i, 0));
        }
        while (deq.size() > 0) {
            Path p = deq.poll();
            if (costs[p.idx] <= p.value) {
                continue;
            }
            costs[p.idx] = p.value;
            for (int x : graph.get(p.idx)) {
                deq.add(new Path(x, p.value + 1));
            }
        }
        int ans = Integer.MAX_VALUE;
        for (int i = b + 1; i <= n; i++) {
            ans = Math.min(ans, costs[i]);
        }
        System.out.println(ans == Integer.MAX_VALUE ? -1 : ans);
    }
    
    static class Path {
        int idx;
        int value;
        
        public Path(int idx, int value) {
            this.idx = idx;
            this.value = value;
        }
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0