結果

問題 No.763 Noelちゃんと木遊び
ユーザー AEnAEn
提出日時 2022-09-09 16:19:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 383 ms / 2,000 ms
コード長 651 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 188,520 KB
最終ジャッジ日時 2024-05-04 06:08:02
合計ジャッジ時間 7,111 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 383 ms
188,520 KB
testcase_01 AC 169 ms
85,428 KB
testcase_02 AC 243 ms
94,000 KB
testcase_03 AC 210 ms
89,148 KB
testcase_04 AC 181 ms
85,624 KB
testcase_05 AC 196 ms
88,768 KB
testcase_06 AC 291 ms
97,856 KB
testcase_07 AC 281 ms
96,836 KB
testcase_08 AC 213 ms
89,808 KB
testcase_09 AC 167 ms
85,832 KB
testcase_10 AC 117 ms
80,592 KB
testcase_11 AC 300 ms
97,608 KB
testcase_12 AC 264 ms
95,252 KB
testcase_13 AC 262 ms
95,376 KB
testcase_14 AC 248 ms
93,696 KB
testcase_15 AC 197 ms
88,764 KB
testcase_16 AC 104 ms
79,324 KB
testcase_17 AC 204 ms
89,100 KB
testcase_18 AC 288 ms
97,344 KB
testcase_19 AC 270 ms
95,768 KB
testcase_20 AC 264 ms
95,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**8)

N = int(input())
G = [list() for _ in range(N)]
for i in range(N-1):
    a, b = map(int, input().split())
    a-=1;b-=1
    G[a].append(b)
    G[b].append(a)

dp = [[-1]*2 for _ in range(N)]
def dfs(v, p):
    if len(G[v])==1 and p!=-1:
        dp[v][0] = 1
        dp[v][1] = 0
        return
    f = 0
    sm1, sm2 = 0, 0
    for nex in G[v]:
        if nex==p:
            continue
        if dp[nex][0] == -1:
            dfs(nex, v)
        sm1 += max(dp[nex])
        sm2 += dp[nex][1]
        f = max(dp[nex][0]-dp[nex][1], f)
    dp[v][1] = sm1
    dp[v][0] = sm2+max(f, 1)
dfs(0, -1)
print(max(dp[0]))
0