結果

問題 No.2205 Lights Out on Christmas Tree
ユーザー ThetaTheta
提出日時 2023-02-06 15:09:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,172 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 76,964 KB
最終ジャッジ日時 2024-07-04 19:17:04
合計ジャッジ時間 27,791 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 WA -
testcase_05 AC 27 ms
10,880 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 28 ms
10,880 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 28 ms
10,624 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 731 ms
48,424 KB
testcase_14 WA -
testcase_15 AC 1,082 ms
74,384 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 28 ms
10,624 KB
testcase_19 WA -
testcase_20 AC 725 ms
46,852 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 717 ms
46,860 KB
testcase_39 AC 710 ms
48,048 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
        for node_idx in graphs[stack[-1][0]]:
            if node_idx not in moved:
                stack.append((node_idx, stack[-1][0]))
                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