結果
問題 | No.1484 木に数を書き込む問題 / Just Write Numbers! 2 |
ユーザー | tenten |
提出日時 | 2021-11-08 16:23:21 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 1,461 ms / 2,000 ms |
コード長 | 2,543 bytes |
コンパイル時間 | 5,380 ms |
コンパイル使用メモリ | 79,140 KB |
実行使用メモリ | 100,364 KB |
最終ジャッジ日時 | 2024-11-16 11:07:53 |
合計ジャッジ時間 | 29,759 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 51 ms
37,028 KB |
testcase_01 | AC | 51 ms
37,028 KB |
testcase_02 | AC | 49 ms
37,368 KB |
testcase_03 | AC | 49 ms
36,732 KB |
testcase_04 | AC | 140 ms
41,464 KB |
testcase_05 | AC | 203 ms
47,752 KB |
testcase_06 | AC | 223 ms
47,944 KB |
testcase_07 | AC | 175 ms
44,876 KB |
testcase_08 | AC | 219 ms
48,292 KB |
testcase_09 | AC | 214 ms
48,204 KB |
testcase_10 | AC | 210 ms
47,668 KB |
testcase_11 | AC | 198 ms
45,392 KB |
testcase_12 | AC | 191 ms
44,760 KB |
testcase_13 | AC | 116 ms
39,244 KB |
testcase_14 | AC | 928 ms
81,800 KB |
testcase_15 | AC | 1,040 ms
75,376 KB |
testcase_16 | AC | 889 ms
84,596 KB |
testcase_17 | AC | 791 ms
65,052 KB |
testcase_18 | AC | 1,119 ms
91,124 KB |
testcase_19 | AC | 1,007 ms
93,756 KB |
testcase_20 | AC | 1,357 ms
95,192 KB |
testcase_21 | AC | 1,085 ms
84,880 KB |
testcase_22 | AC | 1,315 ms
95,520 KB |
testcase_23 | AC | 1,300 ms
93,584 KB |
testcase_24 | AC | 1,461 ms
94,436 KB |
testcase_25 | AC | 1,113 ms
83,352 KB |
testcase_26 | AC | 1,187 ms
84,532 KB |
testcase_27 | AC | 1,192 ms
83,068 KB |
testcase_28 | AC | 1,262 ms
94,520 KB |
testcase_29 | AC | 812 ms
92,356 KB |
testcase_30 | AC | 799 ms
81,776 KB |
testcase_31 | AC | 855 ms
100,364 KB |
ソースコード
import java.util.*; import java.io.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); 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); } PriorityQueue<Path> queue = new PriorityQueue<>(); queue.add(new Path(0, 0)); int[] costs = new int[n]; int max = 0; int maxIdx = 0; for (int i = 0; i < 2; i++) { 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)); } } for (int j = 0; j < n; j++) { if (max < costs[j]) { max = costs[j]; maxIdx = j; } } queue.add(new Path(maxIdx, 0)); } System.out.println((n - 1) * 2 - max); } 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 double nextDouble() throws Exception { return Double.parseDouble(next()); } public String nextLine() throws Exception { return br.readLine(); } public String next() throws Exception { if (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }