結果

問題 No.763 Noelちゃんと木遊び
ユーザー htensaihtensai
提出日時 2020-06-10 17:00:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,130 ms / 2,000 ms
コード長 1,221 bytes
コンパイル時間 2,867 ms
コンパイル使用メモリ 79,720 KB
実行使用メモリ 90,948 KB
最終ジャッジ日時 2024-06-23 08:17:29
合計ジャッジ時間 21,902 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 832 ms
90,948 KB
testcase_01 AC 615 ms
51,928 KB
testcase_02 AC 969 ms
69,004 KB
testcase_03 AC 750 ms
57,972 KB
testcase_04 AC 614 ms
52,776 KB
testcase_05 AC 769 ms
57,760 KB
testcase_06 AC 1,077 ms
71,752 KB
testcase_07 AC 1,013 ms
70,336 KB
testcase_08 AC 848 ms
55,984 KB
testcase_09 AC 655 ms
52,616 KB
testcase_10 AC 427 ms
49,620 KB
testcase_11 AC 1,110 ms
72,460 KB
testcase_12 AC 1,076 ms
69,832 KB
testcase_13 AC 992 ms
71,104 KB
testcase_14 AC 956 ms
64,220 KB
testcase_15 AC 715 ms
56,560 KB
testcase_16 AC 328 ms
48,792 KB
testcase_17 AC 777 ms
54,680 KB
testcase_18 AC 1,130 ms
71,224 KB
testcase_19 AC 1,023 ms
70,848 KB
testcase_20 AC 1,062 ms
70,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static ArrayList<ArrayList<Integer>> graph = new ArrayList<>();
    static int[][] dp;
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		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);
		}
		dp = new int[2][n];
		Arrays.fill(dp[0], - 1);
		Arrays.fill(dp[1], - 1);
		System.out.println(Math.max(dfw(0, 0, 0) , dfw(0, 0, 1)));
	}
	
	static int dfw(int idx, int parent, int flag) {
	    if (dp[flag][idx] >= 0) {
	        return dp[flag][idx];
	    }
	    int sum = 0;
	    if (flag == 0) {
	        for (int x : graph.get(idx)) {
	            if (x == parent) {
	                continue;
	            }
	            sum += Math.max(dfw(x, idx, 0), dfw(x, idx, 1));
	        }
	    } else {
	        sum++;
	        for (int x : graph.get(idx)) {
	            if (x == parent) {
	                continue;
	            }
	            sum += Math.max(dfw(x, idx, 0), dfw(x, idx, 1) - 1);
	        }
	    }
	    return dp[flag][idx] = sum;
	}
}
0