結果

問題 No.2205 Lights Out on Christmas Tree
ユーザー 沙耶花沙耶花
提出日時 2023-02-03 21:33:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 199 ms / 2,000 ms
コード長 733 bytes
コンパイル時間 4,407 ms
コンパイル使用メモリ 262,532 KB
実行使用メモリ 28,168 KB
最終ジャッジ日時 2024-07-02 19:18:38
合計ジャッジ時間 11,296 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 176 ms
16,560 KB
testcase_12 AC 174 ms
16,688 KB
testcase_13 AC 169 ms
16,560 KB
testcase_14 AC 148 ms
16,688 KB
testcase_15 AC 190 ms
28,168 KB
testcase_16 AC 116 ms
11,444 KB
testcase_17 AC 115 ms
11,392 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 174 ms
16,468 KB
testcase_20 AC 178 ms
15,848 KB
testcase_21 AC 179 ms
15,812 KB
testcase_22 AC 164 ms
16,728 KB
testcase_23 AC 179 ms
15,856 KB
testcase_24 AC 178 ms
15,944 KB
testcase_25 AC 191 ms
15,772 KB
testcase_26 AC 199 ms
15,808 KB
testcase_27 AC 174 ms
16,392 KB
testcase_28 AC 167 ms
16,788 KB
testcase_29 AC 163 ms
16,900 KB
testcase_30 AC 196 ms
15,688 KB
testcase_31 AC 173 ms
16,440 KB
testcase_32 AC 177 ms
16,076 KB
testcase_33 AC 176 ms
16,152 KB
testcase_34 AC 174 ms
15,672 KB
testcase_35 AC 195 ms
15,760 KB
testcase_36 AC 197 ms
15,864 KB
testcase_37 AC 176 ms
15,796 KB
testcase_38 AC 199 ms
15,688 KB
testcase_39 AC 174 ms
16,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 1000000000000000001
vector<vector<int>> E;
int ans = 0;
vector<int> c;

void dfs(int cv,int p){
	rep(i,E[cv].size()){
		int to = E[cv][i];
		if(to==p)continue;
		dfs(to,cv);
	}
	if(c[cv]==0 && p!=-1){
		c[cv] = 1;
		c[p] ^= 1;
		ans++;
	}
}

int main(){
	
	int n;
	cin>>n;
	
	E.resize(n);
	c.resize(n);
	rep(i,n-1){
		int a,b;
		cin>>a>>b;
		a--,b--;
		E[a].push_back(b);
		E[b].push_back(a);
	}
	rep(i,n)cin>>c[i];
	dfs(0,-1);
	if(c!=vector<int>(n,1))cout<<-1<<endl;
	else cout<<ans<<endl;
	return 0;
}
0