結果

問題 No.1752 Up-Down Tree
ユーザー HanghangHanghang
提出日時 2024-06-04 16:10:39
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 936 bytes
コンパイル時間 3,470 ms
コンパイル使用メモリ 194,844 KB
実行使用メモリ 20,608 KB
最終ジャッジ日時 2024-06-04 16:10:45
合計ジャッジ時間 5,629 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
20,608 KB
testcase_01 AC 137 ms
20,480 KB
testcase_02 AC 72 ms
16,672 KB
testcase_03 AC 72 ms
16,668 KB
testcase_04 AC 131 ms
18,244 KB
testcase_05 AC 110 ms
19,072 KB
testcase_06 AC 100 ms
17,464 KB
testcase_07 AC 88 ms
17,716 KB
testcase_08 AC 53 ms
10,052 KB
testcase_09 AC 89 ms
12,672 KB
testcase_10 AC 4 ms
8,064 KB
testcase_11 AC 4 ms
8,192 KB
testcase_12 AC 4 ms
8,208 KB
testcase_13 AC 48 ms
10,368 KB
testcase_14 AC 51 ms
10,880 KB
testcase_15 AC 14 ms
8,704 KB
testcase_16 AC 46 ms
10,752 KB
testcase_17 AC 37 ms
10,112 KB
testcase_18 AC 101 ms
13,184 KB
testcase_19 AC 105 ms
13,056 KB
testcase_20 AC 4 ms
8,192 KB
testcase_21 AC 5 ms
8,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include<ext/pb_ds/assoc_container.hpp>
#include<ext/pb_ds/priority_queue.hpp>
#define heap __gnu_pbds::priority_queue

typedef long long ll;
const int N=1e5+3;
int n,ans;
vector<int>ve[N];
struct Nod{int x,op;};
bool operator <(Nod A,Nod B){return A.x!=B.x?A.x<B.x:A.op<B.op;}
heap<Nod>q[N];
void Dfs(int x,int fa)
{
	if(ve[x].size()==1&&fa){q[x].push({1,0});return;}
	for(int y:ve[x])if(y!=fa)Dfs(y,x),q[x].join(q[y]);
	if(q[x].size()==1)
	{
		Nod t=q[x].top();q[x].pop();ans=max(ans,t.x+1);
		q[x].push({1,0});q[x].push({t.x,1});return;
	}
	Nod t1=q[x].top();q[x].pop();Nod t2=q[x].top();q[x].pop();
	int v1=t1.x+t2.x,v2=t1.op|t2.op;
	if(t2.x==1&&!t2.op&&t1.op==1&&!q[x].size())v2=0;
	q[x].push({v1+1,v2});ans=max(ans,v1+1+v2);
}
int main()
{
	cin>>n;
	if(n==1){cout<<1;return 0;}
	for(int i=1,x,y;i<n;i++)cin>>x>>y,ve[x].push_back(y),ve[y].push_back(x);
	Dfs(1,0);cout<<ans;
	return 0;
}
0