結果

問題 No.763 Noelちゃんと木遊び
ユーザー lloyzlloyz
提出日時 2023-10-26 19:06:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 333 ms / 2,000 ms
コード長 831 bytes
コンパイル時間 498 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 112,052 KB
最終ジャッジ日時 2024-09-25 12:27:26
合計ジャッジ時間 6,973 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 234 ms
112,052 KB
testcase_01 AC 180 ms
85,892 KB
testcase_02 AC 281 ms
97,648 KB
testcase_03 AC 216 ms
91,232 KB
testcase_04 AC 188 ms
87,068 KB
testcase_05 AC 217 ms
91,804 KB
testcase_06 AC 327 ms
101,508 KB
testcase_07 AC 316 ms
100,096 KB
testcase_08 AC 227 ms
91,960 KB
testcase_09 AC 179 ms
86,876 KB
testcase_10 AC 138 ms
81,984 KB
testcase_11 AC 323 ms
101,940 KB
testcase_12 AC 307 ms
99,276 KB
testcase_13 AC 308 ms
100,068 KB
testcase_14 AC 277 ms
96,948 KB
testcase_15 AC 224 ms
91,728 KB
testcase_16 AC 128 ms
79,872 KB
testcase_17 AC 224 ms
91,360 KB
testcase_18 AC 333 ms
101,904 KB
testcase_19 AC 316 ms
99,760 KB
testcase_20 AC 310 ms
99,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, deque

n = int(input())
G = defaultdict(list)
C = [0 for _ in range(n)]
for _ in range(n - 1):
    u, v = map(int, input().split())
    u -= 1
    v -= 1
    G[u].append(v)
    G[v].append(u)

for u in range(n):
    if C[u] >= 3:
        for v in G[u]:
            G[v].remove(u)
        G[u] = set()
        C[u] = 0

DP = [[0, 0] for _ in range(n)]
Stack = [(0, -1, 0)]
while Stack:
    cp, pp, m = Stack.pop()
    if m == 0:
        Stack.append((cp, pp, -1))
        for np in G[cp]:
            if np == pp:
                continue
            Stack.append((np, cp, 0))
    else:
        for np in G[cp]:
            if np == pp:
                continue
            DP[cp][0] += max(DP[np][0] - 1, DP[np][1])
            DP[cp][1] += max(DP[np])
        DP[cp][0] += 1
print(max(DP[0]))
0