結果

問題 No.2205 Lights Out on Christmas Tree
ユーザー gr1msl3ygr1msl3y
提出日時 2023-06-08 22:11:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 349 ms / 2,000 ms
コード長 753 bytes
コンパイル時間 1,771 ms
コンパイル使用メモリ 81,848 KB
実行使用メモリ 181,704 KB
最終ジャッジ日時 2024-06-10 00:52:38
合計ジャッジ時間 12,071 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,888 KB
testcase_01 AC 35 ms
52,684 KB
testcase_02 AC 36 ms
52,464 KB
testcase_03 AC 35 ms
54,052 KB
testcase_04 AC 34 ms
53,360 KB
testcase_05 AC 35 ms
52,740 KB
testcase_06 AC 34 ms
52,528 KB
testcase_07 AC 35 ms
53,180 KB
testcase_08 AC 35 ms
52,884 KB
testcase_09 AC 36 ms
52,308 KB
testcase_10 AC 36 ms
52,004 KB
testcase_11 AC 349 ms
177,980 KB
testcase_12 AC 321 ms
178,108 KB
testcase_13 AC 317 ms
177,224 KB
testcase_14 AC 293 ms
181,704 KB
testcase_15 AC 273 ms
143,296 KB
testcase_16 AC 209 ms
120,352 KB
testcase_17 AC 209 ms
120,072 KB
testcase_18 AC 36 ms
52,892 KB
testcase_19 AC 286 ms
145,588 KB
testcase_20 AC 297 ms
143,560 KB
testcase_21 AC 300 ms
143,476 KB
testcase_22 AC 282 ms
140,456 KB
testcase_23 AC 284 ms
143,424 KB
testcase_24 AC 288 ms
144,572 KB
testcase_25 AC 299 ms
143,368 KB
testcase_26 AC 311 ms
143,620 KB
testcase_27 AC 272 ms
145,976 KB
testcase_28 AC 268 ms
140,504 KB
testcase_29 AC 275 ms
145,488 KB
testcase_30 AC 313 ms
143,740 KB
testcase_31 AC 288 ms
145,340 KB
testcase_32 AC 293 ms
144,380 KB
testcase_33 AC 297 ms
144,452 KB
testcase_34 AC 268 ms
143,776 KB
testcase_35 AC 312 ms
143,880 KB
testcase_36 AC 304 ms
143,708 KB
testcase_37 AC 278 ms
143,488 KB
testcase_38 AC 310 ms
143,556 KB
testcase_39 AC 285 ms
145,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
graph = [[] for _ in range(N+1)]
for _ in range(N-1):
    a, b = map(int, input().split())
    graph[a].append(b)
    graph[b].append(a)

C = [0]+list(map(int, input().split()))
parent = [-1]*(N+1)
task = [1]
for v in task:
    for u in graph[v]:
        if parent[v] == u:
            continue
        task.append(u)
        parent[u] = v

ans = 0
task = [N+1, 1]
while task:
    t = task.pop()
    if t > N:
        t -= N
        if t == 1:
            continue
        if not C[t]:
            C[t] ^= 1
            C[parent[t]] ^= 1
            ans += 1
    else:
        for u in graph[t]:
            if u == parent[t]:
                continue
            task.append(u+N)
            task.append(u)

print(ans if C[1] else -1)
0