結果

問題 No.768 Tapris and Noel play the game on Treeone
ユーザー maspymaspy
提出日時 2020-05-05 22:40:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 616 ms / 2,000 ms
コード長 1,040 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 50,852 KB
最終ジャッジ日時 2024-06-27 06:22:10
合計ジャッジ時間 10,102 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 32 ms
10,880 KB
testcase_04 AC 34 ms
11,136 KB
testcase_05 AC 32 ms
10,880 KB
testcase_06 AC 32 ms
11,008 KB
testcase_07 AC 344 ms
29,824 KB
testcase_08 AC 159 ms
20,816 KB
testcase_09 AC 194 ms
22,524 KB
testcase_10 AC 144 ms
19,732 KB
testcase_11 AC 561 ms
40,868 KB
testcase_12 AC 553 ms
40,892 KB
testcase_13 AC 558 ms
39,988 KB
testcase_14 AC 559 ms
39,844 KB
testcase_15 AC 609 ms
41,760 KB
testcase_16 AC 598 ms
41,860 KB
testcase_17 AC 616 ms
42,392 KB
testcase_18 AC 567 ms
49,696 KB
testcase_19 AC 563 ms
50,852 KB
testcase_20 AC 571 ms
48,556 KB
testcase_21 AC 552 ms
46,456 KB
20evil_special_uni1.txt AC 603 ms
44,280 KB
20evil_special_uni2.txt AC 578 ms
42,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

N = int(readline())
m = map(int, read().split())

G = [[] for _ in range(N + 1)]
for a, b in zip(m, m):
    G[a].append(b)
    G[b].append(a)

root = 1
parent = [0] * (N + 1)
order = []
stack = [root]
while stack:
    x = stack.pop()
    order.append(x)
    for y in G[x]:
        if y == parent[x]:
            continue
        parent[y] = x
        stack.append(y)

dp_v = [[0, 0] for _ in range(N + 1)]
dp_e_d = [False] * (N + 1)

for v in order[::-1]:
    p = parent[v]
    if dp_v[v][0] == 0:
        dp_e_d[v] = True
        dp_v[p][0] += 1
    else:
        dp_v[p][1] += 1

dp_e_u = [False] * (N + 1)
for v in order:
    if v == root:
        continue
    p = parent[v]
    dp_e_u[v] = dp_v[p][0] - (dp_e_d[v]) == 0
    if dp_e_u[v]:
        dp_v[v][0] += 1
    else:
        dp_v[v][1] += 1

win_v = [v for v in range(1, N + 1) if not dp_v[v][0]]

print(len(win_v))
if win_v:
    print('\n'.join(map(str, win_v)))
0