結果

問題 No.763 Noelちゃんと木遊び
ユーザー tentententen
提出日時 2022-04-21 15:52:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 543 ms / 2,000 ms
コード長 2,122 bytes
コンパイル時間 3,032 ms
コンパイル使用メモリ 78,500 KB
実行使用メモリ 102,676 KB
最終ジャッジ日時 2024-06-22 19:30:03
合計ジャッジ時間 13,578 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 506 ms
102,676 KB
testcase_01 AC 267 ms
60,508 KB
testcase_02 AC 458 ms
72,532 KB
testcase_03 AC 337 ms
63,944 KB
testcase_04 AC 279 ms
60,636 KB
testcase_05 AC 331 ms
62,872 KB
testcase_06 AC 519 ms
75,740 KB
testcase_07 AC 525 ms
75,852 KB
testcase_08 AC 355 ms
64,980 KB
testcase_09 AC 267 ms
60,660 KB
testcase_10 AC 173 ms
55,752 KB
testcase_11 AC 523 ms
76,344 KB
testcase_12 AC 468 ms
72,836 KB
testcase_13 AC 466 ms
72,884 KB
testcase_14 AC 442 ms
72,812 KB
testcase_15 AC 329 ms
64,780 KB
testcase_16 AC 160 ms
55,372 KB
testcase_17 AC 336 ms
64,020 KB
testcase_18 AC 543 ms
76,092 KB
testcase_19 AC 505 ms
73,528 KB
testcase_20 AC 497 ms
73,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static ArrayList<ArrayList<Integer>> graph = new ArrayList<>();
    static int[][] dp;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        dp = new int[n][2];
        for (int i = 0; i < n; i++) {
            graph.add(new ArrayList<>());
            Arrays.fill(dp[i], -1);
        }
        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(Math.max(dfw(0, 0, 0), dfw(0, 0, 1)));
    }
    
    static int dfw(int idx, int p, int type) {
        if (dp[idx][type] < 0) {
            if (type == 0) {
                dp[idx][type] = 0;
                for (int x : graph.get(idx)) {
                    if (x == p) {
                        continue;
                    }
                    dp[idx][type] += Math.max(dfw(x, idx, 0), dfw(x, idx, 1));
                }
            } else {
                dp[idx][type] = 1;
                for (int x : graph.get(idx)) {
                    if (x == p) {
                        continue;
                    }
                    dp[idx][type] += Math.max(dfw(x, idx, 0), dfw(x, idx, 1) - 1);
                }
            }
        }
        return dp[idx][type];
    }
}
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