結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 565 ms
49,920 KB
testcase_01 AC 212 ms
16,896 KB
testcase_02 AC 494 ms
24,960 KB
testcase_03 AC 328 ms
20,352 KB
testcase_04 AC 232 ms
17,664 KB
testcase_05 AC 316 ms
20,352 KB
testcase_06 AC 593 ms
27,904 KB
testcase_07 AC 570 ms
27,392 KB
testcase_08 AC 341 ms
20,992 KB
testcase_09 AC 236 ms
17,536 KB
testcase_10 AC 110 ms
13,440 KB
testcase_11 AC 596 ms
28,160 KB
testcase_12 AC 525 ms
26,368 KB
testcase_13 AC 506 ms
26,240 KB
testcase_14 AC 451 ms
24,320 KB
testcase_15 AC 323 ms
20,224 KB
testcase_16 AC 80 ms
12,416 KB
testcase_17 AC 324 ms
20,480 KB
testcase_18 AC 596 ms
28,032 KB
testcase_19 AC 551 ms
26,368 KB
testcase_20 AC 526 ms
26,496 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