結果
問題 | No.277 根掘り葉掘り |
ユーザー |
![]() |
提出日時 | 2020-05-12 11:57:20 |
言語 | Java17 (openjdk 17.0.1) |
結果 |
AC
|
実行時間 | 1,226 ms / 3,000 ms |
コード長 | 1,327 bytes |
コンパイル時間 | 3,150 ms |
使用メモリ | 79,744 KB |
最終ジャッジ日時 | 2023-02-25 01:32:07 |
合計ジャッジ時間 | 19,390 ms |
ジャッジサーバーID (参考情報) |
judge14 / judge12 |
テストケース
テストケース表示入力 | 結果 | 実行時間 使用メモリ |
---|---|---|
testcase_00 | AC | 105 ms
50,152 KB |
testcase_01 | AC | 112 ms
51,244 KB |
testcase_02 | AC | 109 ms
52,204 KB |
testcase_03 | AC | 125 ms
50,192 KB |
testcase_04 | AC | 120 ms
52,144 KB |
testcase_05 | AC | 125 ms
47,220 KB |
testcase_06 | AC | 121 ms
52,152 KB |
testcase_07 | AC | 125 ms
51,864 KB |
testcase_08 | AC | 103 ms
51,924 KB |
testcase_09 | AC | 1,064 ms
76,104 KB |
testcase_10 | AC | 931 ms
77,996 KB |
testcase_11 | AC | 1,226 ms
79,744 KB |
testcase_12 | AC | 1,184 ms
79,572 KB |
testcase_13 | AC | 1,135 ms
79,156 KB |
testcase_14 | AC | 1,110 ms
79,140 KB |
testcase_15 | AC | 1,063 ms
76,456 KB |
testcase_16 | AC | 1,086 ms
76,276 KB |
testcase_17 | AC | 1,050 ms
77,992 KB |
testcase_18 | AC | 1,074 ms
76,504 KB |
testcase_19 | AC | 1,106 ms
76,080 KB |
ソースコード
import java.util.*; public class Main { public static void main (String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); ArrayList<ArrayList<Integer>> graph = new ArrayList<>(); for (int i = 0; i < n; i++) { graph.add(new ArrayList<>()); } for (int i = 0; i < n - 1; i++) { int a = sc.nextInt() - 1; int b = sc.nextInt() - 1; graph.get(a).add(b); graph.get(b).add(a); } int[] costs = new int[n]; Arrays.fill(costs, Integer.MAX_VALUE); PriorityQueue<Path> queue = new PriorityQueue<>(); queue.add(new Path(0, 0)); while (queue.size() > 0) { Path p = queue.poll(); if (graph.get(p.idx).size() == 1) { p.value = 0; } 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)); } } StringBuilder sb = new StringBuilder(); for (int x : costs) { sb.append(x).append("\n"); } System.out.print(sb); } 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; } } }