結果

問題 No.2205 Lights Out on Christmas Tree
ユーザー 👑 seekworserseekworser
提出日時 2023-01-31 19:23:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 318 ms / 2,000 ms
コード長 662 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 163,148 KB
最終ジャッジ日時 2024-06-30 21:04:27
合計ジャッジ時間 10,803 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,096 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 39 ms
52,348 KB
testcase_04 AC 40 ms
52,096 KB
testcase_05 AC 41 ms
52,224 KB
testcase_06 AC 39 ms
51,968 KB
testcase_07 AC 41 ms
51,840 KB
testcase_08 AC 39 ms
51,840 KB
testcase_09 AC 43 ms
51,968 KB
testcase_10 AC 38 ms
52,096 KB
testcase_11 AC 318 ms
159,160 KB
testcase_12 AC 308 ms
159,200 KB
testcase_13 AC 312 ms
158,568 KB
testcase_14 AC 285 ms
163,148 KB
testcase_15 AC 266 ms
135,004 KB
testcase_16 AC 212 ms
120,284 KB
testcase_17 AC 211 ms
119,812 KB
testcase_18 AC 38 ms
52,380 KB
testcase_19 AC 279 ms
132,892 KB
testcase_20 AC 296 ms
135,424 KB
testcase_21 AC 290 ms
137,740 KB
testcase_22 AC 280 ms
135,776 KB
testcase_23 AC 276 ms
138,684 KB
testcase_24 AC 280 ms
134,904 KB
testcase_25 AC 296 ms
137,488 KB
testcase_26 AC 308 ms
136,568 KB
testcase_27 AC 278 ms
135,540 KB
testcase_28 AC 282 ms
138,744 KB
testcase_29 AC 280 ms
130,168 KB
testcase_30 AC 306 ms
136,412 KB
testcase_31 AC 272 ms
133,948 KB
testcase_32 AC 286 ms
133,216 KB
testcase_33 AC 280 ms
135,400 KB
testcase_34 AC 264 ms
140,448 KB
testcase_35 AC 305 ms
135,536 KB
testcase_36 AC 305 ms
135,032 KB
testcase_37 AC 272 ms
139,868 KB
testcase_38 AC 303 ms
136,184 KB
testcase_39 AC 270 ms
135,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
adj = [[] for _ in range(n)]
for i in range(n-1):
    a,b = map(int, input().split())
    adj[a-1].append(b-1)
    adj[b-1].append(a-1)
c = list(map(int, input().split()))
# for i in range(n): print(adj[i])

q = [(0, 0)]
pars = [-1] * n
route=[]
while q:
    v, par = q.pop()
    if pars[v] != -1: continue
    pars[v] = par
    route.append(v)
    for nv in adj[v]:
        if nv == par: continue
        q.append((nv, v))
# print(route)
# print(pars)

ans = 0

for v in reversed(route):
    if v == 0: continue
    par = pars[v]
    if not c[v] % 2:
        c[par] += 1
        ans += 1

# print(c)
if not c[0] % 2: print(-1)
else: print(ans)
0