結果

問題 No.1928 Make a Binary Tree
ユーザー tentententen
提出日時 2022-05-10 08:01:49
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,816 bytes
コンパイル時間 2,282 ms
コンパイル使用メモリ 79,108 KB
実行使用メモリ 188,372 KB
最終ジャッジ日時 2024-07-17 13:03:17
合計ジャッジ時間 22,760 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
57,428 KB
testcase_01 AC 54 ms
50,052 KB
testcase_02 AC 53 ms
50,104 KB
testcase_03 AC 55 ms
50,440 KB
testcase_04 AC 53 ms
50,336 KB
testcase_05 AC 53 ms
50,084 KB
testcase_06 AC 54 ms
50,040 KB
testcase_07 AC 54 ms
50,292 KB
testcase_08 AC 56 ms
50,116 KB
testcase_09 AC 56 ms
50,344 KB
testcase_10 AC 54 ms
50,244 KB
testcase_11 AC 53 ms
50,264 KB
testcase_12 AC 55 ms
50,512 KB
testcase_13 AC 57 ms
50,476 KB
testcase_14 AC 55 ms
50,408 KB
testcase_15 AC 173 ms
55,424 KB
testcase_16 AC 167 ms
55,172 KB
testcase_17 AC 146 ms
54,448 KB
testcase_18 AC 177 ms
55,320 KB
testcase_19 AC 112 ms
51,884 KB
testcase_20 AC 163 ms
55,180 KB
testcase_21 AC 147 ms
54,264 KB
testcase_22 AC 153 ms
55,460 KB
testcase_23 AC 152 ms
54,592 KB
testcase_24 AC 176 ms
55,724 KB
testcase_25 AC 184 ms
55,536 KB
testcase_26 AC 1,098 ms
99,608 KB
testcase_27 AC 733 ms
81,072 KB
testcase_28 AC 755 ms
80,012 KB
testcase_29 AC 1,123 ms
100,536 KB
testcase_30 AC 706 ms
78,500 KB
testcase_31 AC 844 ms
83,256 KB
testcase_32 AC 1,270 ms
103,836 KB
testcase_33 AC 793 ms
80,492 KB
testcase_34 AC 861 ms
84,312 KB
testcase_35 AC 754 ms
93,816 KB
testcase_36 TLE -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    static ArrayList<ArrayList<Integer>> graph = new ArrayList<>();
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        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);
        }
        check(0, 0);
        System.out.println(-check(0, 0).poll());
    }
    
    static PriorityQueue<Integer> check(int idx, int p) {
        PriorityQueue<Integer> ans = new PriorityQueue<>();
        for (int x : graph.get(idx)) {
            if (x == p) {
                continue;
            }
            ans.addAll(check(x, idx));
        }
        int value = 0;
        if (ans.size() > 0) {
            value += ans.poll();
        }
        if (ans.size() > 0) {
            value += ans.poll();
        }
        value--;
        ans.add(value);
        return ans;
    }
}

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 next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0