結果

問題 No.2205 Lights Out on Christmas Tree
ユーザー ああいいああいい
提出日時 2023-02-04 16:16:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 281 ms / 2,000 ms
コード長 712 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 171,208 KB
最終ジャッジ日時 2024-07-03 13:25:30
合計ジャッジ時間 10,768 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,748 KB
testcase_01 AC 35 ms
52,196 KB
testcase_02 AC 35 ms
53,292 KB
testcase_03 AC 34 ms
52,336 KB
testcase_04 AC 35 ms
53,248 KB
testcase_05 AC 34 ms
53,076 KB
testcase_06 AC 35 ms
52,740 KB
testcase_07 AC 35 ms
52,924 KB
testcase_08 AC 34 ms
53,220 KB
testcase_09 AC 34 ms
53,504 KB
testcase_10 AC 36 ms
52,456 KB
testcase_11 AC 278 ms
148,732 KB
testcase_12 AC 275 ms
148,992 KB
testcase_13 AC 273 ms
150,968 KB
testcase_14 AC 281 ms
171,208 KB
testcase_15 AC 252 ms
133,296 KB
testcase_16 AC 189 ms
110,188 KB
testcase_17 AC 188 ms
110,000 KB
testcase_18 AC 36 ms
52,920 KB
testcase_19 AC 260 ms
129,280 KB
testcase_20 AC 269 ms
126,916 KB
testcase_21 AC 278 ms
126,840 KB
testcase_22 AC 257 ms
123,716 KB
testcase_23 AC 253 ms
126,740 KB
testcase_24 AC 247 ms
128,212 KB
testcase_25 AC 269 ms
126,704 KB
testcase_26 AC 278 ms
127,016 KB
testcase_27 AC 251 ms
129,576 KB
testcase_28 AC 258 ms
123,704 KB
testcase_29 AC 252 ms
128,672 KB
testcase_30 AC 279 ms
127,080 KB
testcase_31 AC 259 ms
128,580 KB
testcase_32 AC 262 ms
127,856 KB
testcase_33 AC 260 ms
127,844 KB
testcase_34 AC 245 ms
126,980 KB
testcase_35 AC 279 ms
127,132 KB
testcase_36 AC 275 ms
126,940 KB
testcase_37 AC 256 ms
126,792 KB
testcase_38 AC 270 ms
126,836 KB
testcase_39 AC 262 ms
129,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
G = [[] for _ in range(N)]
for _ in range(N - 1):
    a,b = map(int,input().split())
    a -= 1
    b -= 1
    G[a].append(b)
    G[b].append(a)
c = list(map(int,input().split()))

stack = [(0,-1),(~0,-1)]
ans = 0
while stack:
    now,parent = stack.pop()
    if now < 0:
        now = ~now
        for v in G[now]:
            if v != parent:
                stack.append((v,now))
                stack.append((~v,now))
    else:
        if now == 0:
            if c[now] == 1:
                print(ans)
            else:
                print(-1)
            break
        else:
            if c[now] == 0:
                ans += 1
                c[now] = 1
                c[parent] ^= 1

0