結果

問題 No.1928 Make a Binary Tree
ユーザー kotatsugamekotatsugame
提出日時 2022-05-07 02:20:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 255 ms / 3,000 ms
コード長 651 bytes
コンパイル時間 679 ms
コンパイル使用メモリ 77,968 KB
実行使用メモリ 47,088 KB
最終ジャッジ日時 2024-07-06 06:07:19
合計ジャッジ時間 8,774 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
9,620 KB
testcase_01 AC 4 ms
9,644 KB
testcase_02 AC 4 ms
9,560 KB
testcase_03 AC 4 ms
9,612 KB
testcase_04 AC 4 ms
9,600 KB
testcase_05 AC 3 ms
9,576 KB
testcase_06 AC 4 ms
9,632 KB
testcase_07 AC 5 ms
9,616 KB
testcase_08 AC 3 ms
9,472 KB
testcase_09 AC 3 ms
9,484 KB
testcase_10 AC 4 ms
9,648 KB
testcase_11 AC 3 ms
9,604 KB
testcase_12 AC 4 ms
9,684 KB
testcase_13 AC 4 ms
9,572 KB
testcase_14 AC 3 ms
9,600 KB
testcase_15 AC 10 ms
9,992 KB
testcase_16 AC 10 ms
9,940 KB
testcase_17 AC 8 ms
9,832 KB
testcase_18 AC 10 ms
9,944 KB
testcase_19 AC 5 ms
9,724 KB
testcase_20 AC 7 ms
9,840 KB
testcase_21 AC 6 ms
9,692 KB
testcase_22 AC 9 ms
9,924 KB
testcase_23 AC 7 ms
9,836 KB
testcase_24 AC 10 ms
10,016 KB
testcase_25 AC 13 ms
9,980 KB
testcase_26 AC 179 ms
17,544 KB
testcase_27 AC 95 ms
14,512 KB
testcase_28 AC 102 ms
14,792 KB
testcase_29 AC 192 ms
18,628 KB
testcase_30 AC 88 ms
14,116 KB
testcase_31 AC 122 ms
15,760 KB
testcase_32 AC 202 ms
18,312 KB
testcase_33 AC 101 ms
14,704 KB
testcase_34 AC 129 ms
16,020 KB
testcase_35 AC 139 ms
16,168 KB
testcase_36 AC 172 ms
36,248 KB
testcase_37 AC 185 ms
19,864 KB
testcase_38 AC 4 ms
9,624 KB
testcase_39 AC 185 ms
32,960 KB
testcase_40 AC 184 ms
32,764 KB
testcase_41 AC 186 ms
32,784 KB
testcase_42 AC 176 ms
32,684 KB
testcase_43 AC 179 ms
32,692 KB
testcase_44 AC 181 ms
32,816 KB
testcase_45 AC 174 ms
32,892 KB
testcase_46 AC 176 ms
32,908 KB
testcase_47 AC 175 ms
32,952 KB
testcase_48 AC 179 ms
32,824 KB
testcase_49 AC 163 ms
47,088 KB
testcase_50 AC 181 ms
15,812 KB
testcase_51 AC 173 ms
15,896 KB
testcase_52 AC 175 ms
15,828 KB
testcase_53 AC 232 ms
15,852 KB
testcase_54 AC 196 ms
15,856 KB
testcase_55 AC 162 ms
36,244 KB
testcase_56 AC 197 ms
19,432 KB
testcase_57 AC 255 ms
18,936 KB
testcase_58 AC 246 ms
19,216 KB
testcase_59 AC 170 ms
25,808 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:36:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   36 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<set>
#include<vector>
using namespace std;
int N;
vector<int>G[2<<17];
multiset<int>ret;
int dfs(int u,int p)
{
	int ch=1;
	multiset<int>now;
	for(int v:G[u])if(v!=p)
	{
		int c=dfs(v,u);
		if(now.size()<ret.size())now.swap(ret);
		for(int d:ret)now.insert(d);
		now.insert(c);
	}
	if(!now.empty())
	{
		auto it=now.end();
		it--;
		ch+=*it;
		now.erase(it);
		if(!now.empty())
		{
			auto it=now.end();
			it--;
			ch+=*it;
			now.erase(it);
		}
	}
	ret.swap(now);
	return ch;
}
main()
{
	cin>>N;
	for(int i=1;i<N;i++)
	{
		int u,v;cin>>u>>v;u--,v--;
		G[u].push_back(v);
		G[v].push_back(u);
	}
	cout<<dfs(0,-1)<<endl;
}
0