結果

問題 No.1928 Make a Binary Tree
ユーザー 沙耶花沙耶花
提出日時 2022-05-06 21:35:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 232 ms / 3,000 ms
コード長 1,073 bytes
コンパイル時間 4,408 ms
コンパイル使用メモリ 269,916 KB
実行使用メモリ 58,660 KB
最終ジャッジ日時 2024-07-05 22:48:14
合計ジャッジ時間 12,346 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 8 ms
6,940 KB
testcase_16 AC 7 ms
6,940 KB
testcase_17 AC 6 ms
6,948 KB
testcase_18 AC 8 ms
6,940 KB
testcase_19 AC 3 ms
6,940 KB
testcase_20 AC 5 ms
6,944 KB
testcase_21 AC 4 ms
6,944 KB
testcase_22 AC 7 ms
6,940 KB
testcase_23 AC 5 ms
6,940 KB
testcase_24 AC 9 ms
6,944 KB
testcase_25 AC 10 ms
6,944 KB
testcase_26 AC 178 ms
24,528 KB
testcase_27 AC 111 ms
16,384 KB
testcase_28 AC 114 ms
17,684 KB
testcase_29 AC 232 ms
27,648 KB
testcase_30 AC 96 ms
15,304 KB
testcase_31 AC 129 ms
19,484 KB
testcase_32 AC 199 ms
26,740 KB
testcase_33 AC 103 ms
16,736 KB
testcase_34 AC 126 ms
19,720 KB
testcase_35 AC 153 ms
27,728 KB
testcase_36 AC 167 ms
41,240 KB
testcase_37 AC 167 ms
27,196 KB
testcase_38 AC 2 ms
6,948 KB
testcase_39 AC 188 ms
43,188 KB
testcase_40 AC 190 ms
43,204 KB
testcase_41 AC 193 ms
43,008 KB
testcase_42 AC 193 ms
43,064 KB
testcase_43 AC 194 ms
43,096 KB
testcase_44 AC 192 ms
43,128 KB
testcase_45 AC 200 ms
43,024 KB
testcase_46 AC 195 ms
43,000 KB
testcase_47 AC 196 ms
43,092 KB
testcase_48 AC 190 ms
42,956 KB
testcase_49 AC 179 ms
58,660 KB
testcase_50 AC 204 ms
25,892 KB
testcase_51 AC 199 ms
25,832 KB
testcase_52 AC 203 ms
25,968 KB
testcase_53 AC 209 ms
25,968 KB
testcase_54 AC 201 ms
25,836 KB
testcase_55 AC 162 ms
43,076 KB
testcase_56 AC 220 ms
27,380 KB
testcase_57 AC 211 ms
27,308 KB
testcase_58 AC 215 ms
27,324 KB
testcase_59 AC 138 ms
25,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000000

int n;
vector<vector<int>> E;
vector<int> dp;
vector<priority_queue<int>> Q;

void dfs(int cur,int p){
	//cout<<cur<<endl;
	dp[cur] = 1;
	vector<int> t;
	rep(i,E[cur].size()){
		int to = E[cur][i];
		if(to==p)continue;
		dfs(to,cur);
		t.push_back(to);
		Q[cur].push(dp[to]);
	}
	if(t.size()==0)return;
	sort(t.begin(),t.end(),[&](int a,int b){
		return Q[a].size()<Q[b].size();
	});
	swap(Q[cur],Q[t.back()]);
	rep(i,E[cur].size()){
		int to = E[cur][i];
		if(to==p)continue;
		while(Q[to].size()!=0){
			Q[cur].push(Q[to].top());
			Q[to].pop();
		}
	}
	rep(i,2){
		if(Q[cur].size()==0)break;
		dp[cur] += Q[cur].top();
		Q[cur].pop();
	}
}
	

int main(){
	
	cin>>n;
	E.resize(n);
	rep(i,n-1){
		int u,v;
		cin>>u>>v;
		u--,v--;
		E[u].push_back(v);
		E[v].push_back(u);
	}
	
	dp.resize(n);
	Q.resize(n);
	
	dfs(0,-1);
	cout<<dp[0]<<endl;
	
    return 0;
}
0