結果

問題 No.2205 Lights Out on Christmas Tree
ユーザー たたき@競プロたたき@競プロ
提出日時 2023-07-13 07:50:03
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 193 ms / 2,000 ms
コード長 780 bytes
コンパイル時間 4,054 ms
コンパイル使用メモリ 253,280 KB
実行使用メモリ 22,528 KB
最終ジャッジ日時 2024-09-14 19:34:58
合計ジャッジ時間 9,677 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 172 ms
15,780 KB
testcase_12 AC 172 ms
15,648 KB
testcase_13 AC 165 ms
15,772 KB
testcase_14 AC 145 ms
15,904 KB
testcase_15 AC 181 ms
22,528 KB
testcase_16 AC 114 ms
10,880 KB
testcase_17 AC 112 ms
10,880 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 174 ms
15,616 KB
testcase_20 AC 176 ms
14,916 KB
testcase_21 AC 174 ms
14,976 KB
testcase_22 AC 162 ms
16,000 KB
testcase_23 AC 173 ms
14,976 KB
testcase_24 AC 172 ms
15,232 KB
testcase_25 AC 177 ms
14,876 KB
testcase_26 AC 193 ms
15,004 KB
testcase_27 AC 172 ms
15,744 KB
testcase_28 AC 158 ms
15,872 KB
testcase_29 AC 162 ms
15,908 KB
testcase_30 AC 189 ms
14,908 KB
testcase_31 AC 173 ms
15,744 KB
testcase_32 AC 174 ms
15,104 KB
testcase_33 AC 176 ms
15,228 KB
testcase_34 AC 172 ms
14,848 KB
testcase_35 AC 184 ms
14,976 KB
testcase_36 AC 181 ms
15,104 KB
testcase_37 AC 174 ms
14,976 KB
testcase_38 AC 193 ms
14,976 KB
testcase_39 AC 169 ms
15,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
 
using ll=long long;
using pp=pair<int,int>;
#define sr string 
#define vc vector
#define db double
#define fi first
#define se second
#define rep(i,n) for(int i=0;i<(int)n;i++)
#define pb push_back
#define all(v) v.begin(),v.end()
#define pque priority_queue
#define bpc(a) __builtin_popcount(a)
int main(){
	int n;cin>>n;
	vc v(n,vc<int>(0));
	rep(i,n-1){
		int a,b;cin>>a>>b; a--;b--;
		v[a].pb(b); v[b].pb(a);
	}
	vc<int>c(n); rep(i,n)cin>>c[i];
	auto f=[&](auto f,int a,int p)->pp{
	    int res=0,now=c[a];
	    for(auto au:v[a])if(au!=p){
	    	auto [x,y]=f(f,au,a);
	    	res+=x;
	    	now^=y;
	    }
	    if(now==0)return {res+1,1};
	    else return {res,0};
	};
	auto [ans,zz]=f(f,0,-1);
	if(zz)cout<<-1;
	else cout<<ans;
}
	
0