結果

問題 No.2205 Lights Out on Christmas Tree
ユーザー ゆにぽけゆにぽけ
提出日時 2023-10-14 13:07:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 932 bytes
コンパイル時間 1,359 ms
コンパイル使用メモリ 127,264 KB
実行使用メモリ 31,616 KB
最終ジャッジ日時 2024-09-16 07:52:52
合計ジャッジ時間 6,455 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
9,728 KB
testcase_01 AC 4 ms
9,600 KB
testcase_02 AC 4 ms
9,728 KB
testcase_03 AC 4 ms
9,600 KB
testcase_04 AC 5 ms
9,472 KB
testcase_05 AC 5 ms
9,600 KB
testcase_06 AC 5 ms
9,728 KB
testcase_07 AC 4 ms
9,728 KB
testcase_08 AC 4 ms
9,728 KB
testcase_09 AC 4 ms
9,600 KB
testcase_10 AC 5 ms
9,472 KB
testcase_11 AC 72 ms
18,160 KB
testcase_12 AC 73 ms
18,160 KB
testcase_13 AC 71 ms
18,164 KB
testcase_14 AC 66 ms
18,156 KB
testcase_15 AC 89 ms
31,616 KB
testcase_16 AC 56 ms
15,104 KB
testcase_17 AC 55 ms
15,360 KB
testcase_18 AC 6 ms
9,600 KB
testcase_19 AC 82 ms
18,560 KB
testcase_20 AC 90 ms
18,304 KB
testcase_21 AC 88 ms
18,560 KB
testcase_22 AC 73 ms
18,560 KB
testcase_23 AC 83 ms
18,304 KB
testcase_24 AC 80 ms
18,432 KB
testcase_25 AC 91 ms
18,560 KB
testcase_26 AC 98 ms
18,944 KB
testcase_27 AC 82 ms
18,560 KB
testcase_28 AC 71 ms
18,688 KB
testcase_29 AC 75 ms
18,560 KB
testcase_30 AC 97 ms
18,944 KB
testcase_31 AC 80 ms
18,560 KB
testcase_32 AC 86 ms
18,816 KB
testcase_33 AC 87 ms
18,688 KB
testcase_34 AC 80 ms
18,048 KB
testcase_35 AC 97 ms
18,944 KB
testcase_36 AC 96 ms
18,816 KB
testcase_37 AC 82 ms
18,048 KB
testcase_38 AC 99 ms
19,072 KB
testcase_39 AC 81 ms
18,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
#include<cstring>
#include<cassert>
#include<cmath>
#include<ctime>
#include<iomanip>
#include<numeric>
#include<stack>
#include<queue>
#include<map>
#include<unordered_map>
#include<set>
#include<unordered_set>
#include<bitset>
#include<random>
using namespace std;
int N,C[2 << 17],W[2 << 17];
vector<int> G[2 << 17];
long long dp[2 << 17];
void dfs(int u,int p)
{
	if(C[u]) W[u] = 1;
	for(int v:G[u])if(v != p)
	{
		dfs(v,u);
		dp[u] += dp[v];
		if(W[v]%2 == 1) dp[u]++;
		W[u] += W[v];
	}
}
void solve()
{
	cin >> N;
	for(int i = 1;i < N;i++)
	{
		int u,v;
		cin >> u >> v;
		u--; v--;
		G[u].push_back(v);
		G[v].push_back(u);
	}
	for(int i = 0;i < N;i++) cin >> C[i],C[i] ^= 1;
	dfs(0,-1);
	if(W[0]%2 == 1) cout << -1 << endl;
	else cout << dp[0] << endl;
}
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int tt = 1;
	//cin >> tt;
	while(tt--) solve();
}
0