結果

問題 No.1928 Make a Binary Tree
ユーザー tailstails
提出日時 2022-05-06 22:26:49
言語 cLay
(20240714-1)
結果
AC  
実行時間 58 ms / 3,000 ms
コード長 544 bytes
コンパイル時間 2,844 ms
コンパイル使用メモリ 180,684 KB
実行使用メモリ 44,948 KB
最終ジャッジ日時 2024-07-05 23:45:28
合計ジャッジ時間 6,555 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 3 ms
7,492 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,948 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 3 ms
6,940 KB
testcase_16 AC 3 ms
6,944 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 3 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 3 ms
6,944 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 3 ms
6,940 KB
testcase_23 AC 3 ms
6,944 KB
testcase_24 AC 3 ms
6,944 KB
testcase_25 AC 4 ms
6,944 KB
testcase_26 AC 39 ms
12,440 KB
testcase_27 AC 23 ms
10,256 KB
testcase_28 AC 25 ms
9,724 KB
testcase_29 AC 50 ms
14,512 KB
testcase_30 AC 22 ms
10,236 KB
testcase_31 AC 32 ms
10,744 KB
testcase_32 AC 50 ms
13,372 KB
testcase_33 AC 25 ms
10,488 KB
testcase_34 AC 32 ms
11,432 KB
testcase_35 AC 17 ms
13,128 KB
testcase_36 AC 39 ms
30,244 KB
testcase_37 AC 34 ms
13,212 KB
testcase_38 AC 2 ms
6,940 KB
testcase_39 AC 46 ms
28,476 KB
testcase_40 AC 46 ms
27,904 KB
testcase_41 AC 47 ms
28,980 KB
testcase_42 AC 45 ms
28,528 KB
testcase_43 AC 46 ms
28,808 KB
testcase_44 AC 47 ms
28,544 KB
testcase_45 AC 45 ms
28,824 KB
testcase_46 AC 44 ms
28,620 KB
testcase_47 AC 45 ms
28,780 KB
testcase_48 AC 45 ms
28,636 KB
testcase_49 AC 41 ms
44,948 KB
testcase_50 AC 37 ms
14,180 KB
testcase_51 AC 38 ms
12,924 KB
testcase_52 AC 39 ms
13,720 KB
testcase_53 AC 37 ms
13,036 KB
testcase_54 AC 35 ms
13,180 KB
testcase_55 AC 38 ms
31,828 KB
testcase_56 AC 50 ms
14,484 KB
testcase_57 AC 54 ms
14,360 KB
testcase_58 AC 58 ms
13,492 KB
testcase_59 AC 35 ms
14,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

graph g;
priority_queue<ll> f(ll i,ll p){
	priority_queue<ll> q;
	rep[g.edge[i]](j,g.es[i]){
		if(j!=p){
			auto r=f(j,i);
			if(r.size()>q.size()){
				swap(r,q);
			}
			while(!r.empty()){
				ll x=r.top();
				r.pop();
				q.push(x);
			}
		}
	}
	if(q.size()==0){
		q.push(1);
	}
	else
	if(q.size()==1){
		ll x=q.top();
		q.pop();
		q.push(x+1);
	}
	else{
		ll x=q.top();
		q.pop();
		ll y=q.top();
		q.pop();
		q.push(x+y+1);
	}
	return q;
}
{
	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.top());
}
0