結果

問題 No.2072 Anatomy
ユーザー tailstails
提出日時 2022-09-16 22:06:13
言語 cLay
(20240714-1)
結果
AC  
実行時間 20 ms / 2,000 ms
コード長 170 bytes
コンパイル時間 2,902 ms
コンパイル使用メモリ 173,788 KB
実行使用メモリ 11,720 KB
最終ジャッジ日時 2024-06-01 13:06:32
合計ジャッジ時間 4,341 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 18 ms
11,204 KB
testcase_09 AC 16 ms
11,588 KB
testcase_10 AC 17 ms
8,704 KB
testcase_11 AC 17 ms
9,344 KB
testcase_12 AC 13 ms
9,800 KB
testcase_13 AC 20 ms
11,340 KB
testcase_14 AC 13 ms
11,720 KB
testcase_15 AC 10 ms
9,288 KB
testcase_16 AC 20 ms
9,856 KB
testcase_17 AC 17 ms
11,716 KB
testcase_18 AC 10 ms
9,412 KB
testcase_19 AC 20 ms
11,340 KB
testcase_20 AC 20 ms
9,984 KB
testcase_21 AC 17 ms
9,856 KB
testcase_22 AC 20 ms
9,984 KB
testcase_23 AC 18 ms
10,952 KB
testcase_24 AC 16 ms
11,080 KB
testcase_25 AC 20 ms
11,332 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 18 ms
9,856 KB
testcase_28 AC 16 ms
9,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll@n,@m,j=2m,@--w[j],a[n]{};
unionFind f('m',n,1);
REP(m){
	ll u=f(w[--j]);
	ll v=f(w[--j]);
	if(f(u,v)){
		a[f(u)]=1+max(a[u],a[v]);
	}else{
		++a[u];
	}
}
Wt(a[f(0)]);
0