結果

問題 No.1928 Make a Binary Tree
ユーザー tailstails
提出日時 2022-05-06 22:04:40
言語 cLay
(20240714-1)
結果
WA  
実行時間 -
コード長 387 bytes
コンパイル時間 2,603 ms
コンパイル使用メモリ 180,784 KB
実行使用メモリ 33,280 KB
最終ジャッジ日時 2024-07-05 23:18:49
合計ジャッジ時間 6,122 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 WA -
testcase_12 AC 1 ms
5,376 KB
testcase_13 WA -
testcase_14 AC 1 ms
5,376 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 2 ms
5,376 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 31 ms
11,776 KB
testcase_36 WA -
testcase_37 AC 27 ms
11,520 KB
testcase_38 AC 2 ms
5,376 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 48 ms
33,280 KB
testcase_50 AC 47 ms
11,392 KB
testcase_51 AC 49 ms
11,392 KB
testcase_52 AC 47 ms
11,392 KB
testcase_53 AC 49 ms
11,520 KB
testcase_54 AC 50 ms
11,392 KB
testcase_55 AC 43 ms
25,600 KB
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 AC 44 ms
16,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

graph g;
pair<ll,ll> f(ll i,ll p){
	vector<ll> v;
	rep[g.edge[i]](j,g.es[i]){
		if(j!=p){
			auto r=f(j,i);
			v.push_back(r.first);
			v.push_back(r.second);
		}
	}
	sort(v.begin(),v.end());
	v.push_back(0);
	if(v.size()<3){
		return {-1,v[0]};
	}else{
		return {v[0]+v[1]-1,v[2]};
	}
}
{
	ll@n;
	int a[n],b[];
	rd((a,b)(n-1));
	g.setEdge(n+1,n-1,a,b);
	auto r=f(1,1);
	wt(-r.first);
}
0