結果

問題 No.2205 Lights Out on Christmas Tree
ユーザー ThetaTheta
提出日時 2023-02-06 15:16:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 935 ms / 2,000 ms
コード長 1,246 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 76,016 KB
最終ジャッジ日時 2024-07-04 19:22:23
合計ジャッジ時間 25,742 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 27 ms
10,624 KB
testcase_09 AC 25 ms
10,752 KB
testcase_10 AC 25 ms
10,752 KB
testcase_11 AC 876 ms
75,960 KB
testcase_12 AC 873 ms
76,016 KB
testcase_13 AC 711 ms
48,432 KB
testcase_14 AC 835 ms
71,088 KB
testcase_15 AC 901 ms
74,472 KB
testcase_16 AC 594 ms
45,012 KB
testcase_17 AC 540 ms
45,008 KB
testcase_18 AC 27 ms
10,624 KB
testcase_19 AC 883 ms
68,256 KB
testcase_20 AC 744 ms
46,976 KB
testcase_21 AC 873 ms
67,024 KB
testcase_22 AC 883 ms
68,832 KB
testcase_23 AC 905 ms
67,040 KB
testcase_24 AC 864 ms
67,516 KB
testcase_25 AC 866 ms
67,144 KB
testcase_26 AC 935 ms
67,028 KB
testcase_27 AC 850 ms
68,452 KB
testcase_28 AC 862 ms
68,488 KB
testcase_29 AC 808 ms
68,564 KB
testcase_30 AC 900 ms
67,104 KB
testcase_31 AC 843 ms
68,428 KB
testcase_32 AC 870 ms
67,548 KB
testcase_33 AC 904 ms
67,652 KB
testcase_34 AC 840 ms
66,948 KB
testcase_35 AC 889 ms
67,228 KB
testcase_36 AC 922 ms
67,276 KB
testcase_37 AC 825 ms
67,000 KB
testcase_38 AC 760 ms
46,984 KB
testcase_39 AC 702 ms
47,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N = int(input())

    graphs = [[] for _ in range(N)]
    for _ in range(N-1):
        dep, dest = map(lambda n: int(n)-1, input().split())
        graphs[dep].append(dest)
        graphs[dest].append(dep)
    color = list(map(int, input().split()))
    if color.count(0) % 2:
        print(-1)
        return

    moved = set()
    searched = set()
    stack = []
    stack.append([0, None])
    moved.add(0)
    change_ctr = 0
    while stack:
        ctr_child = 0
        current_notice_node, notice_node_parent = stack[-1]
        for node_idx in graphs[current_notice_node]:
            if node_idx not in moved:
                stack.append((node_idx, current_notice_node))
                moved.add(node_idx)
                ctr_child += 1
        if ctr_child == 0:
            current_node_idx, parent_idx = stack.pop()
            if color[current_node_idx] == 0:
                if parent_idx is not None:
                    color[current_node_idx] = 1
                    color[parent_idx] ^= 1
                    change_ctr += 1
                else:
                    print(-1)
                    return
            searched.add(current_node_idx)

    print(change_ctr)


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