結果

問題 No.763 Noelちゃんと木遊び
ユーザー H20H20
提出日時 2023-05-01 17:26:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 417 ms / 2,000 ms
コード長 478 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 228,804 KB
最終ジャッジ日時 2024-11-20 15:12:22
合計ジャッジ時間 6,963 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 417 ms
228,804 KB
testcase_01 AC 166 ms
87,540 KB
testcase_02 AC 279 ms
101,040 KB
testcase_03 AC 216 ms
92,716 KB
testcase_04 AC 180 ms
88,512 KB
testcase_05 AC 213 ms
92,528 KB
testcase_06 AC 325 ms
106,112 KB
testcase_07 AC 306 ms
104,848 KB
testcase_08 AC 214 ms
94,352 KB
testcase_09 AC 174 ms
88,168 KB
testcase_10 AC 132 ms
81,712 KB
testcase_11 AC 335 ms
106,800 KB
testcase_12 AC 301 ms
102,448 KB
testcase_13 AC 294 ms
102,004 KB
testcase_14 AC 276 ms
99,920 KB
testcase_15 AC 214 ms
92,788 KB
testcase_16 AC 118 ms
80,008 KB
testcase_17 AC 213 ms
92,916 KB
testcase_18 AC 325 ms
106,500 KB
testcase_19 AC 298 ms
102,836 KB
testcase_20 AC 302 ms
103,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**7)
N = int(input())
AB = [list(map(int,input().split())) for _ in range(N-1)]
L = [[] for _ in range(N)]
for a,b in AB:
    L[a-1].append(b-1)
    L[b-1].append(a-1)
#木の数
DP = [[0]*2 for _ in range(N)]
def dfs(i,p):
    for l in L[i]:
        if l !=p:
            dfs(l,i)
    for l in L[i]:
        if l !=p:
            DP[i][0]+=max(DP[l][0]-1,DP[l][1])
            DP[i][1]+=max(DP[l])
    DP[i][0]+=1
dfs(0,-1)
print(max(DP[0]))
0