結果

問題 No.763 Noelちゃんと木遊び
ユーザー neterukunneterukun
提出日時 2021-02-15 01:30:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 289 ms / 2,000 ms
コード長 1,009 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 107,264 KB
最終ジャッジ日時 2024-07-22 13:20:36
合計ジャッジ時間 6,473 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 215 ms
107,264 KB
testcase_01 AC 162 ms
85,632 KB
testcase_02 AC 251 ms
100,480 KB
testcase_03 AC 200 ms
92,800 KB
testcase_04 AC 170 ms
86,912 KB
testcase_05 AC 203 ms
92,416 KB
testcase_06 AC 287 ms
105,856 KB
testcase_07 AC 275 ms
102,272 KB
testcase_08 AC 207 ms
92,544 KB
testcase_09 AC 171 ms
87,552 KB
testcase_10 AC 134 ms
80,640 KB
testcase_11 AC 289 ms
106,240 KB
testcase_12 AC 263 ms
103,296 KB
testcase_13 AC 253 ms
100,992 KB
testcase_14 AC 224 ms
96,384 KB
testcase_15 AC 201 ms
92,416 KB
testcase_16 AC 115 ms
77,312 KB
testcase_17 AC 197 ms
92,544 KB
testcase_18 AC 276 ms
106,240 KB
testcase_19 AC 276 ms
103,168 KB
testcase_20 AC 267 ms
103,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def topological_sorted(tree, root=None):
    n = len(tree)
    par = [-1] * n
    tp_order = []
    for v in range(n):
        if par[v] != -1 or (root is not None and v != root):
            continue
        stack = [v]
        while stack:
            v = stack.pop()
            tp_order.append(v)
            for nxt_v in tree[v]:
                if nxt_v == par[v]:
                    continue
                par[nxt_v] = v
                stack.append(nxt_v)
    return tp_order, par


n = int(input())
edges = [list(map(int, input().split())) for i in range(n - 1)]


tree = [[] for i in range(n)]
for u, v in edges:
    u -= 1
    v -= 1
    tree[u].append(v)
    tree[v].append(u)

tp_order, par = topological_sorted(tree, 0)
dp0 = [0] * n
dp1 = [0] * n

for v in tp_order[::-1]:
    for nxt_v in tree[v]:
        if nxt_v == par[v]:
            continue
        dp0[v] += max(dp0[nxt_v], dp1[nxt_v])
        dp1[v] += max(dp0[nxt_v], dp1[nxt_v] - 1)
    dp1[v] += 1

print(max(max(dp0), max(dp1)))
0