結果

問題 No.763 Noelちゃんと木遊び
ユーザー htensaihtensai
提出日時 2020-06-10 16:57:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,337 ms / 2,000 ms
コード長 1,167 bytes
コンパイル時間 2,590 ms
コンパイル使用メモリ 79,120 KB
実行使用メモリ 94,680 KB
最終ジャッジ日時 2024-06-23 08:13:22
合計ジャッジ時間 25,819 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 966 ms
94,680 KB
testcase_01 AC 722 ms
52,988 KB
testcase_02 AC 1,119 ms
71,548 KB
testcase_03 AC 795 ms
60,144 KB
testcase_04 AC 745 ms
53,524 KB
testcase_05 AC 866 ms
59,168 KB
testcase_06 AC 1,269 ms
73,432 KB
testcase_07 AC 1,232 ms
75,044 KB
testcase_08 AC 884 ms
59,904 KB
testcase_09 AC 759 ms
52,888 KB
testcase_10 AC 462 ms
49,900 KB
testcase_11 AC 1,250 ms
74,308 KB
testcase_12 AC 1,234 ms
73,612 KB
testcase_13 AC 1,112 ms
72,564 KB
testcase_14 AC 1,111 ms
69,816 KB
testcase_15 AC 842 ms
59,600 KB
testcase_16 AC 351 ms
48,724 KB
testcase_17 AC 825 ms
60,080 KB
testcase_18 AC 1,337 ms
74,024 KB
testcase_19 AC 1,195 ms
72,452 KB
testcase_20 AC 1,187 ms
72,068 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[n][2];
		System.out.println(Math.max(dfw(0, 0, 0) , dfw(0, 0, 1)));
	}
	
	static int dfw(int idx, int parent, int flag) {
	    if (dp[idx][flag] != 0) {
	        return dp[idx][flag];
	    }
	    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[idx][flag] = sum;
	}
}
0