結果

問題 No.1420 国勢調査 (Easy)
ユーザー tailstails
提出日時 2021-03-09 21:17:08
言語 cLay
(20240714-1)
結果
AC  
実行時間 26 ms / 2,000 ms
コード長 344 bytes
コンパイル時間 2,351 ms
コンパイル使用メモリ 176,936 KB
実行使用メモリ 16,788 KB
最終ジャッジ日時 2024-07-05 15:06:30
合計ジャッジ時間 5,348 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 4 ms
7,488 KB
testcase_02 AC 15 ms
9,900 KB
testcase_03 AC 15 ms
9,984 KB
testcase_04 AC 15 ms
11,044 KB
testcase_05 AC 14 ms
11,032 KB
testcase_06 AC 15 ms
10,088 KB
testcase_07 AC 12 ms
10,128 KB
testcase_08 AC 13 ms
10,336 KB
testcase_09 AC 12 ms
10,140 KB
testcase_10 AC 12 ms
11,084 KB
testcase_11 AC 12 ms
9,688 KB
testcase_12 AC 5 ms
9,892 KB
testcase_13 AC 7 ms
9,888 KB
testcase_14 AC 5 ms
8,608 KB
testcase_15 AC 7 ms
9,760 KB
testcase_16 AC 8 ms
8,740 KB
testcase_17 AC 7 ms
10,392 KB
testcase_18 AC 7 ms
8,608 KB
testcase_19 AC 7 ms
8,608 KB
testcase_20 AC 7 ms
10,016 KB
testcase_21 AC 7 ms
9,756 KB
testcase_22 AC 24 ms
14,668 KB
testcase_23 AC 25 ms
16,664 KB
testcase_24 AC 24 ms
14,284 KB
testcase_25 AC 25 ms
16,788 KB
testcase_26 AC 26 ms
14,112 KB
testcase_27 AC 14 ms
12,752 KB
testcase_28 AC 14 ms
14,036 KB
testcase_29 AC 15 ms
15,248 KB
testcase_30 AC 14 ms
14,996 KB
testcase_31 AC 14 ms
14,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

wgraph<int> g;
int a[1d5],b[],y[],r[],u[];

void f(int i){
	rep(j,g.es[i]){
		int k=g.edge[i][j];
		if(u[k]){
			if(r[i]^r[k]^g.cost[i][j]){
				wt(-1);
				exit(0);
			}
		}else{
			u[k]=1;
			r[k]=r[i]^g.cost[i][j];
			f(k);
		}
	}
}

{
	int @n,@m;
	rd((a--,b--,y)(m));
	g.setEdge(n,m,a,b,y);
	rep(i,n) if(!u[i]) u[i]=1, f(i);
	wtLn(r(n));
}
0