結果

問題 No.763 Noelちゃんと木遊び
ユーザー tentententen
提出日時 2022-04-21 15:52:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 537 ms / 2,000 ms
コード長 2,122 bytes
コンパイル時間 4,135 ms
コンパイル使用メモリ 76,272 KB
実行使用メモリ 104,000 KB
最終ジャッジ日時 2023-09-04 22:03:05
合計ジャッジ時間 14,888 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 537 ms
104,000 KB
testcase_01 AC 258 ms
61,088 KB
testcase_02 AC 449 ms
73,736 KB
testcase_03 AC 330 ms
64,780 KB
testcase_04 AC 274 ms
61,260 KB
testcase_05 AC 321 ms
64,256 KB
testcase_06 AC 510 ms
75,736 KB
testcase_07 AC 511 ms
76,232 KB
testcase_08 AC 350 ms
64,888 KB
testcase_09 AC 272 ms
61,212 KB
testcase_10 AC 174 ms
53,696 KB
testcase_11 AC 528 ms
76,252 KB
testcase_12 AC 481 ms
74,004 KB
testcase_13 AC 476 ms
73,824 KB
testcase_14 AC 432 ms
69,028 KB
testcase_15 AC 329 ms
64,668 KB
testcase_16 AC 154 ms
55,212 KB
testcase_17 AC 333 ms
64,768 KB
testcase_18 AC 516 ms
76,208 KB
testcase_19 AC 494 ms
73,632 KB
testcase_20 AC 495 ms
74,136 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