結果

問題 No.763 Noelちゃんと木遊び
ユーザー flippergoflippergo
提出日時 2024-10-14 21:06:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 345 ms / 2,000 ms
コード長 817 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 178,196 KB
最終ジャッジ日時 2024-10-14 21:07:03
合計ジャッジ時間 8,069 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 321 ms
178,196 KB
testcase_01 AC 182 ms
83,968 KB
testcase_02 AC 287 ms
92,160 KB
testcase_03 AC 220 ms
87,936 KB
testcase_04 AC 228 ms
84,352 KB
testcase_05 AC 224 ms
88,064 KB
testcase_06 AC 339 ms
94,852 KB
testcase_07 AC 345 ms
93,952 KB
testcase_08 AC 248 ms
88,192 KB
testcase_09 AC 194 ms
84,480 KB
testcase_10 AC 143 ms
79,744 KB
testcase_11 AC 327 ms
95,220 KB
testcase_12 AC 310 ms
93,312 KB
testcase_13 AC 319 ms
93,184 KB
testcase_14 AC 257 ms
91,648 KB
testcase_15 AC 220 ms
87,936 KB
testcase_16 AC 138 ms
79,232 KB
testcase_17 AC 222 ms
87,936 KB
testcase_18 AC 339 ms
94,628 KB
testcase_19 AC 294 ms
93,312 KB
testcase_20 AC 295 ms
93,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(100000+10)
from collections import deque
N = int(input())
G = {i:[] for i in range(1,N+1)}
for _ in range(N-1):
    u,v = map(int,input().split())
    G[u].append(v)
    G[v].append(u)
deg = [0]*(N+1)
P = [0]*(N+1)
def dfs(x,p):
    for y in G[x]:
        if y==p:continue
        deg[x] += 1
        P[y] = x
        dfs(y,x)
dfs(1,0)
dp = [0]*(N+1)
deg1 = deg[:]
que = deque([])
for i in range(1,N+1):
    if deg[i]==0:
        que.append(i)
F = [0]*(N+1)
while que:
    x = que.popleft()
    if deg[x]==0:
        dp[x] = 1
    else:
        dp[x] = F[x]
        cnt = 1
        for y in G[x]:
            if y==P[x]:continue
            cnt += F[y]
        dp[x] = max(dp[x],cnt)
    F[P[x]] += dp[x]
    deg1[P[x]] -= 1
    if deg1[P[x]]==0:
        que.append(P[x])
print(dp[1])
0