結果

問題 No.2532 Want Play More
ユーザー tentententen
提出日時 2024-04-03 16:20:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 941 ms / 2,000 ms
コード長 2,166 bytes
コンパイル時間 2,370 ms
コンパイル使用メモリ 80,200 KB
実行使用メモリ 119,712 KB
最終ジャッジ日時 2024-09-30 23:59:43
合計ジャッジ時間 17,634 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
50,228 KB
testcase_01 AC 913 ms
88,668 KB
testcase_02 AC 834 ms
88,708 KB
testcase_03 AC 838 ms
88,632 KB
testcase_04 AC 877 ms
88,640 KB
testcase_05 AC 915 ms
87,960 KB
testcase_06 AC 690 ms
119,712 KB
testcase_07 AC 137 ms
52,156 KB
testcase_08 AC 153 ms
54,608 KB
testcase_09 AC 150 ms
54,472 KB
testcase_10 AC 546 ms
70,640 KB
testcase_11 AC 559 ms
68,360 KB
testcase_12 AC 788 ms
76,836 KB
testcase_13 AC 654 ms
72,944 KB
testcase_14 AC 307 ms
61,052 KB
testcase_15 AC 941 ms
88,504 KB
testcase_16 AC 720 ms
85,556 KB
testcase_17 AC 139 ms
54,000 KB
testcase_18 AC 738 ms
76,012 KB
testcase_19 AC 868 ms
87,732 KB
testcase_20 AC 56 ms
49,928 KB
testcase_21 AC 56 ms
50,108 KB
testcase_22 AC 55 ms
49,980 KB
testcase_23 AC 55 ms
50,136 KB
testcase_24 AC 55 ms
50,212 KB
testcase_25 AC 56 ms
49,732 KB
testcase_26 AC 55 ms
49,924 KB
testcase_27 AC 56 ms
50,108 KB
testcase_28 AC 676 ms
92,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    static List<List<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);
        }
        System.out.println(search(0, 0, true));
        System.out.println(search(0, 0, false));
    }
    
    static int search(int idx, int p, boolean bigger) {
        if (bigger) {
            int ans = 0;
            for (int x : graph.get(idx)) {
                if (x != p) {
                    ans = Math.max(ans, search(x, idx, bigger ^ true) + 1);
                }
            }
            return ans;
        } else {
            int ans = Integer.MAX_VALUE;
            for (int x : graph.get(idx)) {
                if (x != p) {
                    ans = Math.min(ans, search(x, idx, bigger ^ true) + 1);
                }
            }
            return ans == Integer.MAX_VALUE ? 0 : ans;
        }
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}
0