結果

問題 No.763 Noelちゃんと木遊び
ユーザー tktk_snsntktk_snsn
提出日時 2021-02-08 20:59:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 177 ms / 2,000 ms
コード長 804 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 95,328 KB
最終ジャッジ日時 2024-07-05 22:57:34
合計ジャッジ時間 4,359 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
91,004 KB
testcase_01 AC 96 ms
82,148 KB
testcase_02 AC 156 ms
91,360 KB
testcase_03 AC 123 ms
85,384 KB
testcase_04 AC 110 ms
82,980 KB
testcase_05 AC 112 ms
85,144 KB
testcase_06 AC 177 ms
95,080 KB
testcase_07 AC 172 ms
93,976 KB
testcase_08 AC 126 ms
85,604 KB
testcase_09 AC 98 ms
82,404 KB
testcase_10 AC 85 ms
78,416 KB
testcase_11 AC 169 ms
95,328 KB
testcase_12 AC 166 ms
93,128 KB
testcase_13 AC 159 ms
92,900 KB
testcase_14 AC 153 ms
91,040 KB
testcase_15 AC 120 ms
85,000 KB
testcase_16 AC 79 ms
78,020 KB
testcase_17 AC 122 ms
85,292 KB
testcase_18 AC 177 ms
95,212 KB
testcase_19 AC 167 ms
93,152 KB
testcase_20 AC 160 ms
93,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)

N = int(input())
G = [[] for _ in range(N)]
for _ in range(N - 1):
    a, b = map(int, input().split())
    a -= 1
    b -= 1
    G[a].append(b)
    G[b].append(a)

topo = []
par = [-1] * N
q = [0]
while q:
    s = q.pop()
    topo.append(s)
    for t in G[s]:
        if t == par[s]:
            continue
        G[t].remove(s)
        par[t] = s
        q.append(t)

X = [0] * N  # 根付き木iの根が残ってるときの最大
Y = [0] * N  # 根を消した時の最大

for s in reversed(topo):
    if not G[s]:
        X[s] = 1
        continue

    sumY = 0
    sumXY = 0
    for t in G[s]:
        sumY += Y[t]
        sumXY += max(X[t], Y[t])
    X[s] = max(sumY + 1, sumXY)
    Y[s] = sumXY

print(max(X[0], Y[0]))
0