結果

問題 No.2205 Lights Out on Christmas Tree
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-02-03 23:31:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 368 ms / 2,000 ms
コード長 599 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 171,768 KB
最終ジャッジ日時 2024-07-02 21:34:18
合計ジャッジ時間 11,700 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,840 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 39 ms
51,584 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 39 ms
52,480 KB
testcase_05 AC 38 ms
51,712 KB
testcase_06 AC 39 ms
52,608 KB
testcase_07 AC 40 ms
51,712 KB
testcase_08 AC 40 ms
51,712 KB
testcase_09 AC 39 ms
51,840 KB
testcase_10 AC 40 ms
52,736 KB
testcase_11 AC 368 ms
171,012 KB
testcase_12 AC 361 ms
171,768 KB
testcase_13 AC 363 ms
169,576 KB
testcase_14 AC 326 ms
169,428 KB
testcase_15 AC 305 ms
135,936 KB
testcase_16 AC 242 ms
122,240 KB
testcase_17 AC 248 ms
122,340 KB
testcase_18 AC 41 ms
52,224 KB
testcase_19 AC 320 ms
132,608 KB
testcase_20 AC 332 ms
135,296 KB
testcase_21 AC 335 ms
140,312 KB
testcase_22 AC 320 ms
146,088 KB
testcase_23 AC 326 ms
144,768 KB
testcase_24 AC 324 ms
132,352 KB
testcase_25 AC 341 ms
137,856 KB
testcase_26 AC 360 ms
135,680 KB
testcase_27 AC 319 ms
132,352 KB
testcase_28 AC 330 ms
145,112 KB
testcase_29 AC 320 ms
140,060 KB
testcase_30 AC 349 ms
135,552 KB
testcase_31 AC 316 ms
131,328 KB
testcase_32 AC 326 ms
130,944 KB
testcase_33 AC 323 ms
132,900 KB
testcase_34 AC 317 ms
145,152 KB
testcase_35 AC 341 ms
135,296 KB
testcase_36 AC 345 ms
134,536 KB
testcase_37 AC 314 ms
145,076 KB
testcase_38 AC 347 ms
135,680 KB
testcase_39 AC 313 ms
132,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
e = [[] for i in range(n)]
for _ in range(n-1):
    a,b = [int(x)-1 for x in input().split()]
    e[a].append(b)
    e[b].append(a)
C = list(map(int,input().split()))
ans = 0

topo = []
vis = [0]*n
par = [-1]*n
q = [0]
vis[0] = 1
while q:
    now = q.pop()
    topo.append(now)
    for nex in e[now]:
        if vis[nex]:
            continue
        vis[nex] = 1
        par[nex] = now
        q.append(nex)

for now in topo[::-1]:
    if now == 0:
        break
    if C[now]:
        continue
    C[now] = 1
    C[par[now]] ^= 1
    ans += 1
if C[0] == 0:
    ans = -1
print(ans)
0