結果

問題 No.2205 Lights Out on Christmas Tree
ユーザー tassei903tassei903
提出日時 2023-02-04 11:08:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 269 ms / 2,000 ms
コード長 962 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 159,028 KB
最終ジャッジ日時 2024-07-03 09:41:20
合計ジャッジ時間 9,564 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,960 KB
testcase_01 AC 37 ms
52,624 KB
testcase_02 AC 37 ms
52,488 KB
testcase_03 AC 37 ms
53,500 KB
testcase_04 AC 37 ms
54,080 KB
testcase_05 AC 36 ms
52,704 KB
testcase_06 AC 36 ms
52,956 KB
testcase_07 AC 37 ms
53,008 KB
testcase_08 AC 36 ms
52,880 KB
testcase_09 AC 37 ms
52,468 KB
testcase_10 AC 37 ms
52,680 KB
testcase_11 AC 254 ms
159,028 KB
testcase_12 AC 244 ms
153,904 KB
testcase_13 AC 248 ms
157,336 KB
testcase_14 AC 238 ms
153,684 KB
testcase_15 AC 219 ms
129,860 KB
testcase_16 AC 189 ms
115,816 KB
testcase_17 AC 189 ms
116,156 KB
testcase_18 AC 36 ms
52,568 KB
testcase_19 AC 247 ms
142,328 KB
testcase_20 AC 256 ms
134,644 KB
testcase_21 AC 264 ms
134,628 KB
testcase_22 AC 243 ms
145,184 KB
testcase_23 AC 243 ms
139,016 KB
testcase_24 AC 255 ms
137,740 KB
testcase_25 AC 254 ms
133,724 KB
testcase_26 AC 256 ms
129,912 KB
testcase_27 AC 252 ms
145,020 KB
testcase_28 AC 243 ms
144,692 KB
testcase_29 AC 243 ms
146,376 KB
testcase_30 AC 260 ms
130,264 KB
testcase_31 AC 246 ms
143,648 KB
testcase_32 AC 252 ms
135,264 KB
testcase_33 AC 250 ms
135,420 KB
testcase_34 AC 235 ms
138,760 KB
testcase_35 AC 265 ms
131,360 KB
testcase_36 AC 263 ms
131,044 KB
testcase_37 AC 241 ms
139,560 KB
testcase_38 AC 269 ms
129,916 KB
testcase_39 AC 249 ms
142,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
n = ni()
g = [[] for i in range(n)]
deg = [0] * n
for _ in range(n-1):
    a,b = na()
    a-=1
    b-=1
    g[a].append(b)
    g[b].append(a)
    deg[a] += 1
    deg[b] += 1
c = [i^1 for i in na()]
p = [i for i in range(n) if deg[i] == 1]
ans = 0
while p:
    x = p.pop()
    #print(p, x)
    deg[x] -= 1
    for y in g[x]:
        if deg[y] >= 1:
            deg[y] -= 1
        if deg[y] == 1:
            p.append(y)
        if deg[y] >= 1 and c[x] == 1:
            c[x] ^= 1
            c[y] ^= 1
            ans += 1
if sum(c) == 2:
    print(ans+1)
elif sum(c) == 1:
    print(-1)
else:
    print(ans)
0