結果

問題 No.2205 Lights Out on Christmas Tree
ユーザー rlangevinrlangevin
提出日時 2023-02-03 22:40:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 281 ms / 2,000 ms
コード長 778 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 149,256 KB
最終ジャッジ日時 2024-07-02 20:46:39
合計ジャッジ時間 9,522 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 37
権限があれば一括ダウンロードができます

ソースコード

diff #

def non_rec_dfs(s):
    stack = []
    stack.append(~s)
    stack.append(s)
    par = [-1] * N
    ans = 0
    while stack:
        u = stack.pop()
        if u >= 0:
            stack.append(~u)
            for v in G[u]:
                if v == par[u]:
                    continue
                par[v] = u
                stack.append(v)
        else:
            u = ~u
            if C[u] == 0:
                C[u] = 1
                C[par[u]] = 1 - C[par[u]]
                ans += 1
    return ans

N = int(input())
G = [[] for i in range(N)]
for i in range(N - 1):
    A, B = map(int, input().split())
    A, B = A - 1, B - 1
    G[A].append(B)
    G[B].append(A)
    
C = list(map(int, input().split()))
ans = non_rec_dfs(0)
print(ans) if sum(C) == N else print(-1)
0