結果

問題 No.2205 Lights Out on Christmas Tree
ユーザー gr1msl3ygr1msl3y
提出日時 2023-06-08 22:11:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 264 ms / 2,000 ms
コード長 497 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 152,668 KB
最終ジャッジ日時 2024-06-10 00:52:51
合計ジャッジ時間 9,155 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,352 KB
testcase_01 AC 37 ms
52,804 KB
testcase_02 AC 36 ms
52,868 KB
testcase_03 AC 34 ms
52,736 KB
testcase_04 AC 36 ms
53,272 KB
testcase_05 AC 36 ms
53,208 KB
testcase_06 AC 35 ms
53,372 KB
testcase_07 AC 36 ms
52,488 KB
testcase_08 AC 35 ms
53,220 KB
testcase_09 AC 37 ms
52,472 KB
testcase_10 AC 37 ms
52,520 KB
testcase_11 AC 264 ms
148,748 KB
testcase_12 AC 263 ms
148,592 KB
testcase_13 AC 254 ms
148,312 KB
testcase_14 AC 223 ms
152,668 KB
testcase_15 AC 224 ms
146,436 KB
testcase_16 AC 182 ms
122,260 KB
testcase_17 AC 197 ms
122,268 KB
testcase_18 AC 36 ms
52,980 KB
testcase_19 AC 236 ms
145,856 KB
testcase_20 AC 229 ms
146,616 KB
testcase_21 AC 233 ms
146,724 KB
testcase_22 AC 238 ms
143,456 KB
testcase_23 AC 223 ms
146,460 KB
testcase_24 AC 232 ms
148,356 KB
testcase_25 AC 228 ms
146,380 KB
testcase_26 AC 241 ms
146,764 KB
testcase_27 AC 243 ms
146,228 KB
testcase_28 AC 233 ms
142,864 KB
testcase_29 AC 227 ms
144,932 KB
testcase_30 AC 221 ms
146,488 KB
testcase_31 AC 247 ms
144,948 KB
testcase_32 AC 233 ms
144,648 KB
testcase_33 AC 232 ms
144,564 KB
testcase_34 AC 230 ms
146,416 KB
testcase_35 AC 237 ms
146,492 KB
testcase_36 AC 228 ms
147,152 KB
testcase_37 AC 225 ms
146,476 KB
testcase_38 AC 236 ms
146,532 KB
testcase_39 AC 241 ms
147,960 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
for v in task[1:][::-1]:
    if C[v]:
        continue
    C[parent[v]] ^= 1
    C[v] = 1
    ans += 1

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