結果
問題 | No.277 根掘り葉掘り |
ユーザー | tenten |
提出日時 | 2020-10-05 09:56:46 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,360 bytes |
コンパイル時間 | 2,359 ms |
コンパイル使用メモリ | 79,284 KB |
実行使用メモリ | 88,548 KB |
最終ジャッジ日時 | 2024-07-19 19:24:15 |
合計ジャッジ時間 | 18,081 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 132 ms
41,204 KB |
testcase_01 | AC | 130 ms
41,032 KB |
testcase_02 | WA | - |
testcase_03 | AC | 147 ms
41,760 KB |
testcase_04 | AC | 149 ms
41,836 KB |
testcase_05 | AC | 144 ms
41,996 KB |
testcase_06 | AC | 136 ms
40,796 KB |
testcase_07 | AC | 146 ms
41,524 KB |
testcase_08 | AC | 132 ms
41,188 KB |
testcase_09 | AC | 1,157 ms
88,548 KB |
testcase_10 | AC | 1,033 ms
72,592 KB |
testcase_11 | AC | 1,153 ms
72,516 KB |
testcase_12 | AC | 1,195 ms
80,220 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
ソースコード
import java.util.*; public class Main { static ArrayList<ArrayList<Integer>> graph = new ArrayList<>(); static int[] roots; static int[] leaves; public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); roots = new int[n]; leaves = new int[n]; 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); } getDist(0, 0, 0); StringBuilder sb = new StringBuilder(); for (int i = 0; i < n; i++) { sb.append(Math.min(roots[i], leaves[i])).append("\n"); } System.out.print(sb); } static int getDist(int idx, int parent, int depth) { roots[idx] = depth; if (idx != 0 && graph.get(idx).size() == 1) { leaves[idx] = 0; } else { int min = Integer.MAX_VALUE; for (int x : graph.get(idx)) { if (x == parent) { continue; } min = Math.min(min, getDist(x, idx, depth + 1)); } leaves[idx] = min; } return leaves[idx] + 1; } }