結果

問題 No.763 Noelちゃんと木遊び
ユーザー H3PO4H3PO4
提出日時 2021-01-16 09:13:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 583 ms / 2,000 ms
コード長 494 bytes
コンパイル時間 603 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 50,048 KB
最終ジャッジ日時 2024-11-27 08:51:30
合計ジャッジ時間 10,316 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 543 ms
50,048 KB
testcase_01 AC 206 ms
16,256 KB
testcase_02 AC 453 ms
23,552 KB
testcase_03 AC 311 ms
19,584 KB
testcase_04 AC 233 ms
17,152 KB
testcase_05 AC 305 ms
19,200 KB
testcase_06 AC 552 ms
26,368 KB
testcase_07 AC 520 ms
25,728 KB
testcase_08 AC 326 ms
19,968 KB
testcase_09 AC 225 ms
16,768 KB
testcase_10 AC 105 ms
13,184 KB
testcase_11 AC 576 ms
26,624 KB
testcase_12 AC 521 ms
24,832 KB
testcase_13 AC 501 ms
24,576 KB
testcase_14 AC 432 ms
23,168 KB
testcase_15 AC 300 ms
19,328 KB
testcase_16 AC 76 ms
12,416 KB
testcase_17 AC 319 ms
19,456 KB
testcase_18 AC 583 ms
26,496 KB
testcase_19 AC 511 ms
24,960 KB
testcase_20 AC 507 ms
25,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 9)

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


def rec(v, parent):
    remove, leave = 0, 1
    for child in T[v]:
        if child == parent:
            continue
        remove_c, leave_c = rec(child, v)
        remove += max(remove_c, leave_c)
        leave += max(remove_c, leave_c - 1)
    return remove, leave


print(max(rec(0, -1)))
0