結果

問題 No.1484 木に数を書き込む問題 / Just Write Numbers! 2
ユーザー tentententen
提出日時 2021-11-08 16:23:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,151 ms / 2,000 ms
コード長 2,543 bytes
コンパイル時間 4,116 ms
コンパイル使用メモリ 78,792 KB
実行使用メモリ 105,100 KB
最終ジャッジ日時 2024-04-28 02:39:37
合計ジャッジ時間 25,622 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
49,784 KB
testcase_01 AC 45 ms
50,088 KB
testcase_02 AC 45 ms
50,016 KB
testcase_03 AC 44 ms
50,268 KB
testcase_04 AC 126 ms
54,680 KB
testcase_05 AC 183 ms
55,764 KB
testcase_06 AC 210 ms
57,804 KB
testcase_07 AC 170 ms
55,764 KB
testcase_08 AC 207 ms
57,956 KB
testcase_09 AC 201 ms
59,744 KB
testcase_10 AC 210 ms
55,872 KB
testcase_11 AC 184 ms
55,480 KB
testcase_12 AC 181 ms
55,668 KB
testcase_13 AC 99 ms
51,656 KB
testcase_14 AC 842 ms
94,616 KB
testcase_15 AC 958 ms
86,988 KB
testcase_16 AC 834 ms
87,340 KB
testcase_17 AC 730 ms
76,440 KB
testcase_18 AC 999 ms
96,292 KB
testcase_19 AC 1,037 ms
104,728 KB
testcase_20 AC 1,046 ms
104,908 KB
testcase_21 AC 1,070 ms
104,384 KB
testcase_22 AC 1,010 ms
101,428 KB
testcase_23 AC 1,077 ms
105,100 KB
testcase_24 AC 1,135 ms
104,808 KB
testcase_25 AC 1,151 ms
104,648 KB
testcase_26 AC 1,031 ms
104,988 KB
testcase_27 AC 1,032 ms
99,556 KB
testcase_28 AC 1,107 ms
104,908 KB
testcase_29 AC 686 ms
93,516 KB
testcase_30 AC 774 ms
102,060 KB
testcase_31 AC 811 ms
100,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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();
    }
}
0