結果

問題 No.768 Tapris and Noel play the game on Treeone
ユーザー H3PO4H3PO4
提出日時 2021-02-01 10:57:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 882 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 54,796 KB
最終ジャッジ日時 2024-06-29 22:47:25
合計ジャッジ時間 11,509 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 25 ms
10,880 KB
testcase_03 WA -
testcase_04 AC 33 ms
11,008 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 395 ms
33,844 KB
testcase_08 AC 213 ms
22,400 KB
testcase_09 WA -
testcase_10 AC 180 ms
21,248 KB
testcase_11 AC 606 ms
45,648 KB
testcase_12 AC 612 ms
45,840 KB
testcase_13 AC 628 ms
44,868 KB
testcase_14 AC 596 ms
44,812 KB
testcase_15 AC 617 ms
46,944 KB
testcase_16 AC 632 ms
47,128 KB
testcase_17 AC 663 ms
47,772 KB
testcase_18 AC 661 ms
54,796 KB
testcase_19 AC 663 ms
54,604 KB
testcase_20 AC 684 ms
52,620 KB
testcase_21 AC 614 ms
50,768 KB
20evil_special_uni1.txt AC 673 ms
48,636 KB
20evil_special_uni2.txt AC 604 ms
46,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

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

# dfs
dfs_order = []
d = deque([0])
nonvisited = [True] * N
nonvisited[0] = False
while d:
    v = d.pop()
    for x in T[v]:
        if nonvisited[x]:
            d.append(x)
            dfs_order.append((x, v))
            nonvisited[x] = False

# 子から親へ
dp0, dp1 = [0] * N, [0] * N
for child, v in reversed(dfs_order):
    if dp0[child] == len(T[child]) - 1:
        dp1[v] += 1
    else:
        dp0[v] += 1

# 親から子へ
win = set()
if not dp1[0]:
    win.add(0)
for child, v in dfs_order:
    if v in win:
        dp1[child] += 1
    if not dp1[child] and dp1[v] != 1:
        win.add(child)

print(len(win))
if win:
    print(*(w + 1 for w in win), sep='\n')
0