結果

問題 No.768 Tapris and Noel play the game on Treeone
ユーザー ninja-kidninja-kid
提出日時 2023-02-24 02:02:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 694 ms / 2,000 ms
コード長 1,617 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 10,916 KB
実行使用メモリ 33,540 KB
最終ジャッジ日時 2023-10-01 00:50:28
合計ジャッジ時間 11,812 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
8,760 KB
testcase_01 AC 20 ms
8,832 KB
testcase_02 AC 19 ms
8,744 KB
testcase_03 AC 23 ms
8,832 KB
testcase_04 AC 24 ms
8,968 KB
testcase_05 AC 24 ms
8,940 KB
testcase_06 AC 22 ms
8,780 KB
testcase_07 AC 406 ms
21,004 KB
testcase_08 AC 213 ms
15,028 KB
testcase_09 AC 254 ms
16,456 KB
testcase_10 AC 189 ms
14,596 KB
testcase_11 AC 659 ms
27,700 KB
testcase_12 AC 673 ms
27,832 KB
testcase_13 AC 656 ms
27,288 KB
testcase_14 AC 640 ms
27,216 KB
testcase_15 AC 694 ms
28,504 KB
testcase_16 AC 686 ms
28,608 KB
testcase_17 AC 691 ms
28,940 KB
testcase_18 AC 608 ms
32,976 KB
testcase_19 AC 638 ms
33,540 KB
testcase_20 AC 641 ms
32,548 KB
testcase_21 AC 623 ms
31,200 KB
20evil_special_uni1.txt AC 675 ms
29,960 KB
20evil_special_uni2.txt AC 635 ms
29,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
from bisect import bisect_left, bisect_right
from collections import deque
from itertools import permutations
from sys import setrecursionlimit


dpos4 = ((1, 0), (0, 1), (-1, 0), (0, -1))
dpos8 = ((0, -1), (1, -1), (1, 0), (1, 1), (0, 1), (-1, 1), (-1, 0), (-1, -1))
mod1 = 10**9 + 7
mod2 = 998244353
inf = 1 << 60


def main():
    N = int(input())
    edges = [[] for _ in range(N)]
    for _ in range(N - 1):
        u, v = map(int, input().split())
        u -= 1
        v -= 1
        edges[u].append(v)
        edges[v].append(u)

    dp1 = [True] * N
    dp2 = [True] * N

    setrecursionlimit(10**6)

    def dfs1(fr, prev=-1):
        val = False
        for to in edges[fr]:
            if to == prev:
                continue
            dfs1(to, fr)
            val |= dp1[to]
        dp1[fr] = not val

    def dfs2(fr, prev=-1):
        val = False
        for to in edges[fr]:
            val |= dp1[to]
        dp2[fr] = not val
        L = len(edges[fr])
        lval = [False] * (L + 1)
        rval = [False] * (L + 1)
        for i in range(L):
            to = edges[fr][i]
            lval[i + 1] = lval[i] or dp1[to]
            j = L - 1 - i
            to = edges[fr][j]
            rval[j] = rval[j + 1] or dp1[to]
        for i in range(L):
            to = edges[fr][i]
            if to == prev:
                continue
            dp1[fr] = not (lval[i] or rval[i + 1])
            dfs2(to, fr)


    dfs1(0)
    dfs2(0)
    print(sum(dp2))
    if sum(dp2):
        print(*(i + 1 for i in range(N) if dp2[i]), sep='\n')


if __name__ == "__main__":
    main()
0