結果

問題 No.2205 Lights Out on Christmas Tree
ユーザー titiatitia
提出日時 2023-02-05 00:13:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 891 ms / 2,000 ms
コード長 817 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 70,356 KB
最終ジャッジ日時 2024-07-03 19:33:42
合計ジャッジ時間 24,900 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 28 ms
10,880 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 29 ms
10,880 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 28 ms
10,752 KB
testcase_11 AC 763 ms
67,224 KB
testcase_12 AC 754 ms
67,352 KB
testcase_13 AC 723 ms
67,352 KB
testcase_14 AC 694 ms
61,328 KB
testcase_15 AC 767 ms
70,356 KB
testcase_16 AC 469 ms
47,916 KB
testcase_17 AC 475 ms
48,044 KB
testcase_18 AC 28 ms
10,624 KB
testcase_19 AC 763 ms
68,284 KB
testcase_20 AC 803 ms
68,376 KB
testcase_21 AC 804 ms
68,264 KB
testcase_22 AC 755 ms
67,552 KB
testcase_23 AC 761 ms
67,024 KB
testcase_24 AC 728 ms
68,484 KB
testcase_25 AC 811 ms
68,616 KB
testcase_26 AC 889 ms
70,176 KB
testcase_27 AC 765 ms
67,820 KB
testcase_28 AC 756 ms
67,840 KB
testcase_29 AC 768 ms
67,692 KB
testcase_30 AC 869 ms
69,916 KB
testcase_31 AC 769 ms
68,256 KB
testcase_32 AC 799 ms
69,284 KB
testcase_33 AC 773 ms
69,412 KB
testcase_34 AC 755 ms
66,792 KB
testcase_35 AC 844 ms
69,728 KB
testcase_36 AC 853 ms
69,644 KB
testcase_37 AC 782 ms
66,588 KB
testcase_38 AC 891 ms
70,144 KB
testcase_39 AC 751 ms
68,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())
E=[[] for i in range(N)]
for i in range(N-1):
    a,b=map(int,input().split())
    a-=1
    b-=1
    E[a].append(b)
    E[b].append(a)

ROOT=0

QUE=[ROOT] 
Parent=[-1]*(N+1)
Parent[ROOT]=N # ROOTの親を定めておく.
Child=[[] for i in range(N+1)]
TOP_SORT=[] # トポロジカルソート

while QUE: # トポロジカルソートと同時に親を見つける
    x=QUE.pop()
    TOP_SORT.append(x)
    for to in E[x]:
        if Parent[to]==-1:
            Parent[to]=x
            Child[x].append(to)
            QUE.append(to)

A=list(map(int,input().split()))
ANS=0
for x in TOP_SORT[::-1]:
    if x==ROOT:
        break

    if A[x]==0:
        A[x]^=1
        A[Parent[x]]^=1
        ANS+=1

if A[ROOT]==1:
    print(ANS)
else:
    print(-1)
        
0