結果

問題 No.763 Noelちゃんと木遊び
ユーザー tentententen
提出日時 2023-07-07 14:34:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 528 ms / 2,000 ms
コード長 2,308 bytes
コンパイル時間 2,772 ms
コンパイル使用メモリ 92,020 KB
実行使用メモリ 83,288 KB
最終ジャッジ日時 2024-07-21 09:46:20
合計ジャッジ時間 13,070 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 407 ms
83,288 KB
testcase_01 AC 258 ms
49,984 KB
testcase_02 AC 445 ms
56,968 KB
testcase_03 AC 333 ms
53,140 KB
testcase_04 AC 270 ms
50,868 KB
testcase_05 AC 328 ms
52,052 KB
testcase_06 AC 528 ms
60,308 KB
testcase_07 AC 494 ms
57,952 KB
testcase_08 AC 343 ms
53,568 KB
testcase_09 AC 261 ms
50,652 KB
testcase_10 AC 177 ms
44,748 KB
testcase_11 AC 522 ms
60,380 KB
testcase_12 AC 491 ms
56,948 KB
testcase_13 AC 477 ms
56,924 KB
testcase_14 AC 440 ms
56,464 KB
testcase_15 AC 327 ms
52,268 KB
testcase_16 AC 157 ms
42,872 KB
testcase_17 AC 330 ms
53,204 KB
testcase_18 AC 520 ms
60,232 KB
testcase_19 AC 500 ms
56,988 KB
testcase_20 AC 487 ms
57,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static ArrayList<ArrayList<Integer>> graph = new ArrayList<>();
    static int[] dp1;
    static int[] dp2;
    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);
        }
        dp1 = new int[n];
        dp2 = new int[n];
        check(0, 0);
        System.out.println(Math.max(dp1[0], dp2[0]));
    }
    
    static void check(int idx, int p) {
        dp1[idx] = 1;
        dp2[idx] = 0;
        for (int x : graph.get(idx)) {
            if (x == p) {
                continue;
            }
            check(x, idx);
            dp1[idx] += Math.max(dp1[x] - 1, dp2[x]);
            dp2[idx] += Math.max(dp1[x], dp2[x]);
        }
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    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 int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0