結果

問題 No.2822 Lights Up! (Tree Edition)
ユーザー achapiachapi
提出日時 2024-06-26 14:51:45
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 700 bytes
コンパイル時間 4,034 ms
コンパイル使用メモリ 267,856 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-06-26 14:51:56
合計ジャッジ時間 8,736 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 142
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
int main(){
	int N;
	cin >> N;
	vector<int> P(N);
	for (int i = 1; i < N; i++){
		cin >> P[i];
		P[i]--;
	}
	string S;
	cin >> S;
	S = '.' + S;
	vector<int> A(N);
	for (int i = 1; i < N; i++){
		if (S[i] == '#'){
			A[i] = 1;
		}
	}
	atcoder::dsu uf(N);
	int Q;
	cin >> Q;
	while (Q--){
		int U, V;
		cin >> U >> V;
		U--;
		V--;
		uf.merge(U, V);
	}
	for (int i = 1; i < N; i++){
		if (S[i] == '#'){
			A[P[i]] ^= 1;
		}
	}
	bool ok = true;
	for (auto s : uf.groups()){
		int x = 0;
		for (int v : s){
			x ^= A[v];
		}
		if (x == 1){
			ok = false;
		}
	}
	if (ok){
		cout << "Yes" << endl;
	} else {
		cout << "No" << endl;
	}
}
0