結果

問題 No.1420 国勢調査 (Easy)
ユーザー 👑 NachiaNachia
提出日時 2021-03-05 22:59:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 531 bytes
コンパイル時間 1,931 ms
コンパイル使用メモリ 201,856 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-07 04:22:31
合計ジャッジ時間 5,803 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 84 ms
6,816 KB
testcase_03 AC 88 ms
6,816 KB
testcase_04 AC 93 ms
6,816 KB
testcase_05 AC 88 ms
6,816 KB
testcase_06 AC 90 ms
6,820 KB
testcase_07 AC 26 ms
6,816 KB
testcase_08 AC 64 ms
6,816 KB
testcase_09 AC 33 ms
6,820 KB
testcase_10 AC 68 ms
6,820 KB
testcase_11 AC 15 ms
6,816 KB
testcase_12 AC 8 ms
6,820 KB
testcase_13 AC 21 ms
6,820 KB
testcase_14 AC 10 ms
6,816 KB
testcase_15 AC 19 ms
6,820 KB
testcase_16 AC 20 ms
6,816 KB
testcase_17 AC 20 ms
6,816 KB
testcase_18 AC 20 ms
6,816 KB
testcase_19 AC 20 ms
6,816 KB
testcase_20 AC 20 ms
6,820 KB
testcase_21 AC 20 ms
6,816 KB
testcase_22 AC 108 ms
6,820 KB
testcase_23 AC 114 ms
6,820 KB
testcase_24 AC 104 ms
6,820 KB
testcase_25 AC 105 ms
6,820 KB
testcase_26 AC 108 ms
6,820 KB
testcase_27 AC 47 ms
6,816 KB
testcase_28 AC 45 ms
6,816 KB
testcase_29 AC 24 ms
6,816 KB
testcase_30 AC 48 ms
6,816 KB
testcase_31 AC 45 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

vector<int> V,X;
int root(int a){
	if(V[a]<0) return a;
	int p=V[a], r=root(p);
	V[a]=r; X[a]^=X[p];
	return r;
}
int merge(int r,int c,int y){
	int rr=root(r), rc=root(c);
	if(rr==rc) return X[r]^X[c]^y;
	V[rc]=r; X[rc]=y^X[c];
	return 0;
}

int N,M;

int main(){
	cin>>N>>M;
	V.assign(N,-1);
	X.assign(N,0);
	for(int i=0; i<M; i++){
		int a,b,y; cin>>a>>b>>y;
		if(merge(a-1,b-1,y)){ printf("-1\n"); return 0; }
	}
	for(int i=0; i<N; i++){ root(i); cout<<X[i]<<"\n"; }
	return 0;
}
0