結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 539 ms
50,048 KB
testcase_01 AC 213 ms
16,256 KB
testcase_02 AC 489 ms
23,680 KB
testcase_03 AC 329 ms
19,712 KB
testcase_04 AC 237 ms
17,152 KB
testcase_05 AC 337 ms
19,328 KB
testcase_06 AC 590 ms
26,368 KB
testcase_07 AC 563 ms
25,856 KB
testcase_08 AC 340 ms
19,968 KB
testcase_09 AC 236 ms
16,768 KB
testcase_10 AC 107 ms
13,184 KB
testcase_11 AC 617 ms
26,752 KB
testcase_12 AC 523 ms
24,832 KB
testcase_13 AC 518 ms
24,704 KB
testcase_14 AC 459 ms
23,168 KB
testcase_15 AC 318 ms
19,456 KB
testcase_16 AC 77 ms
12,160 KB
testcase_17 AC 324 ms
19,584 KB
testcase_18 AC 601 ms
26,368 KB
testcase_19 AC 542 ms
24,960 KB
testcase_20 AC 536 ms
25,344 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