結果

問題 No.2205 Lights Out on Christmas Tree
ユーザー ntudantuda
提出日時 2023-02-05 12:49:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,242 ms / 2,000 ms
コード長 524 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 121,936 KB
最終ジャッジ日時 2024-07-04 02:53:53
合計ジャッジ時間 34,330 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 29 ms
10,880 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 27 ms
10,880 KB
testcase_10 AC 28 ms
10,624 KB
testcase_11 AC 1,122 ms
85,924 KB
testcase_12 AC 1,131 ms
85,848 KB
testcase_13 AC 1,115 ms
87,004 KB
testcase_14 AC 1,079 ms
73,664 KB
testcase_15 AC 1,242 ms
121,936 KB
testcase_16 AC 703 ms
58,952 KB
testcase_17 AC 724 ms
58,676 KB
testcase_18 AC 30 ms
10,624 KB
testcase_19 AC 1,128 ms
85,956 KB
testcase_20 AC 1,128 ms
84,296 KB
testcase_21 AC 1,103 ms
84,296 KB
testcase_22 AC 1,097 ms
85,548 KB
testcase_23 AC 1,133 ms
84,424 KB
testcase_24 AC 1,137 ms
85,328 KB
testcase_25 AC 1,170 ms
84,428 KB
testcase_26 AC 1,167 ms
84,304 KB
testcase_27 AC 1,153 ms
85,808 KB
testcase_28 AC 1,100 ms
85,628 KB
testcase_29 AC 1,143 ms
85,124 KB
testcase_30 AC 1,176 ms
84,432 KB
testcase_31 AC 1,111 ms
85,496 KB
testcase_32 AC 1,138 ms
84,940 KB
testcase_33 AC 1,150 ms
84,936 KB
testcase_34 AC 1,116 ms
84,292 KB
testcase_35 AC 1,139 ms
84,432 KB
testcase_36 AC 1,162 ms
84,428 KB
testcase_37 AC 1,123 ms
84,292 KB
testcase_38 AC 1,186 ms
84,428 KB
testcase_39 AC 1,122 ms
85,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(200050)

N = int(input())
AB = [list(map(int,input().split())) for _ in range(N-1)]
C = list(map(int,input().split()))
E = [[] for _ in range(N)]
for a,b in AB:
    a -= 1; b -= 1
    E[a].append(b)
    E[b].append(a)

ans = 0
def dfs(u,p):
    global ans
    cnt = 0
    for v in E[u]:
        if v != p:
            dfs(v,u)
            if C[v] == 0:
                cnt += 1
    if cnt % 2 == 1:
        C[u] ^= 1
    ans += cnt

dfs(0,-1)
if C[0] == 1:
    print(ans)
else:
    print(-1)
0