結果

問題 No.2205 Lights Out on Christmas Tree
ユーザー tamatotamato
提出日時 2023-02-03 21:44:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 241 ms / 2,000 ms
コード長 1,063 bytes
コンパイル時間 125 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 160,100 KB
最終ジャッジ日時 2024-07-02 19:35:00
合計ジャッジ時間 8,319 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,888 KB
testcase_01 AC 40 ms
53,504 KB
testcase_02 AC 41 ms
53,760 KB
testcase_03 AC 43 ms
54,016 KB
testcase_04 AC 40 ms
53,888 KB
testcase_05 AC 40 ms
54,016 KB
testcase_06 AC 39 ms
53,888 KB
testcase_07 AC 39 ms
53,632 KB
testcase_08 AC 36 ms
53,760 KB
testcase_09 AC 37 ms
53,504 KB
testcase_10 AC 38 ms
54,016 KB
testcase_11 AC 230 ms
147,672 KB
testcase_12 AC 232 ms
147,548 KB
testcase_13 AC 221 ms
151,352 KB
testcase_14 AC 229 ms
160,100 KB
testcase_15 AC 206 ms
140,672 KB
testcase_16 AC 162 ms
116,736 KB
testcase_17 AC 157 ms
116,608 KB
testcase_18 AC 37 ms
54,016 KB
testcase_19 AC 232 ms
139,648 KB
testcase_20 AC 222 ms
139,392 KB
testcase_21 AC 214 ms
138,496 KB
testcase_22 AC 226 ms
135,156 KB
testcase_23 AC 217 ms
138,632 KB
testcase_24 AC 219 ms
139,904 KB
testcase_25 AC 228 ms
138,624 KB
testcase_26 AC 229 ms
139,624 KB
testcase_27 AC 212 ms
140,032 KB
testcase_28 AC 215 ms
134,656 KB
testcase_29 AC 217 ms
139,068 KB
testcase_30 AC 201 ms
139,008 KB
testcase_31 AC 226 ms
139,392 KB
testcase_32 AC 234 ms
139,008 KB
testcase_33 AC 232 ms
139,136 KB
testcase_34 AC 208 ms
138,624 KB
testcase_35 AC 226 ms
138,240 KB
testcase_36 AC 241 ms
138,240 KB
testcase_37 AC 214 ms
138,752 KB
testcase_38 AC 225 ms
138,624 KB
testcase_39 AC 217 ms
140,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353


def main():
    import sys
    from collections import deque
    input = sys.stdin.readline

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

    que = deque()
    que.append(1)
    seen = [-1] * (N+1)
    seen[1] = 0
    par = [0] * (N+1)
    child = [[] for _ in range(N+1)]
    seq = []
    while que:
        v = que.popleft()
        seq.append(v)
        for u in adj[v]:
            if seen[u] == -1:
                seen[u] = seen[v] + 1
                par[u] = v
                child[v].append(u)
                que.append(u)
    seq.reverse()

    ans = 0
    for v in seq:
        if v == 1:
            if C[v] == 0:
                print(-1)
                exit()
        else:
            p = par[v]
            if C[v] == 0:
                C[v] = 1
                C[p] ^= 1
                ans += 1
    print(ans)


if __name__ == '__main__':
    main()
0