結果

問題 No.763 Noelちゃんと木遊び
ユーザー playerplayer
提出日時 2024-05-24 00:18:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 690 ms / 2,000 ms
コード長 631 bytes
コンパイル時間 358 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 50,176 KB
最終ジャッジ日時 2024-05-24 00:19:03
合計ジャッジ時間 12,483 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 580 ms
50,176 KB
testcase_01 AC 266 ms
16,896 KB
testcase_02 AC 531 ms
24,960 KB
testcase_03 AC 374 ms
20,608 KB
testcase_04 AC 295 ms
17,792 KB
testcase_05 AC 351 ms
20,224 KB
testcase_06 AC 662 ms
28,032 KB
testcase_07 AC 622 ms
27,392 KB
testcase_08 AC 382 ms
21,120 KB
testcase_09 AC 265 ms
17,536 KB
testcase_10 AC 115 ms
13,568 KB
testcase_11 AC 657 ms
28,288 KB
testcase_12 AC 609 ms
26,368 KB
testcase_13 AC 556 ms
26,112 KB
testcase_14 AC 533 ms
24,448 KB
testcase_15 AC 351 ms
20,352 KB
testcase_16 AC 80 ms
12,544 KB
testcase_17 AC 350 ms
20,480 KB
testcase_18 AC 690 ms
28,032 KB
testcase_19 AC 580 ms
26,496 KB
testcase_20 AC 622 ms
26,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**7)

n = int(input())

edge = [[] for _ in range(n)]
for _ in range(n-1):
    u,v = map(int, input().split())
    edge[u-1].append(v-1)
    edge[v-1].append(u-1)
    
# dp0[i]:iを根とする部分木において,iを削除する時の最大値
# dp1[i]:iを根とする部分木において,iを削除しない時の最大値
dp0 = [0]*n
dp1 = [1]*n

def dfs(now,parent):
    for to in edge[now]:
        if to == parent:
            continue
        dfs(to,now)
        dp0[now] += max(dp0[to],dp1[to])
        dp1[now] += max(dp0[to],dp1[to]-1)
        
dfs(0,-1)

print(max(dp0[0],dp1[0]))
0