結果

問題 No.2205 Lights Out on Christmas Tree
ユーザー gr1msl3ygr1msl3y
提出日時 2023-06-06 20:50:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 485 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 152,680 KB
最終ジャッジ日時 2024-06-09 06:20:19
合計ジャッジ時間 11,212 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 37 ms
52,480 KB
testcase_02 AC 38 ms
52,064 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 39 ms
52,480 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 39 ms
52,096 KB
testcase_07 AC 39 ms
52,096 KB
testcase_08 AC 39 ms
52,224 KB
testcase_09 AC 38 ms
51,712 KB
testcase_10 AC 39 ms
51,968 KB
testcase_11 AC 314 ms
149,004 KB
testcase_12 AC 305 ms
148,760 KB
testcase_13 AC 315 ms
148,304 KB
testcase_14 AC 273 ms
152,680 KB
testcase_15 AC 275 ms
146,484 KB
testcase_16 WA -
testcase_17 AC 203 ms
121,912 KB
testcase_18 AC 40 ms
52,096 KB
testcase_19 AC 282 ms
145,268 KB
testcase_20 AC 274 ms
146,636 KB
testcase_21 AC 271 ms
146,432 KB
testcase_22 AC 279 ms
142,948 KB
testcase_23 AC 271 ms
146,400 KB
testcase_24 AC 275 ms
147,840 KB
testcase_25 AC 272 ms
146,580 KB
testcase_26 AC 281 ms
146,692 KB
testcase_27 WA -
testcase_28 AC 274 ms
142,868 KB
testcase_29 AC 275 ms
145,536 KB
testcase_30 AC 280 ms
146,432 KB
testcase_31 AC 275 ms
147,968 KB
testcase_32 AC 282 ms
144,316 KB
testcase_33 AC 278 ms
147,380 KB
testcase_34 AC 265 ms
146,816 KB
testcase_35 AC 281 ms
146,764 KB
testcase_36 WA -
testcase_37 AC 267 ms
146,048 KB
testcase_38 AC 277 ms
146,688 KB
testcase_39 AC 275 ms
145,696 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[u] == -1:
            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