結果

問題 No.2532 Want Play More
ユーザー kotatsugamekotatsugame
提出日時 2023-11-03 22:05:45
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 638 bytes
コンパイル時間 851 ms
コンパイル使用メモリ 70,560 KB
実行使用メモリ 33,024 KB
最終ジャッジ日時 2024-09-25 20:28:19
合計ジャッジ時間 3,989 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
9,600 KB
testcase_01 AC 149 ms
17,408 KB
testcase_02 AC 151 ms
17,536 KB
testcase_03 AC 149 ms
17,280 KB
testcase_04 AC 144 ms
17,152 KB
testcase_05 AC 142 ms
16,768 KB
testcase_06 AC 78 ms
33,024 KB
testcase_07 AC 6 ms
9,728 KB
testcase_08 AC 8 ms
9,984 KB
testcase_09 AC 8 ms
9,728 KB
testcase_10 AC 59 ms
13,312 KB
testcase_11 AC 52 ms
13,440 KB
testcase_12 AC 99 ms
15,488 KB
testcase_13 AC 70 ms
13,824 KB
testcase_14 AC 22 ms
11,136 KB
testcase_15 AC 161 ms
17,280 KB
testcase_16 AC 124 ms
16,256 KB
testcase_17 AC 7 ms
9,856 KB
testcase_18 AC 91 ms
14,720 KB
testcase_19 AC 132 ms
16,256 KB
testcase_20 AC 6 ms
9,472 KB
testcase_21 AC 5 ms
9,600 KB
testcase_22 AC 5 ms
9,728 KB
testcase_23 AC 6 ms
9,728 KB
testcase_24 AC 5 ms
9,472 KB
testcase_25 AC 5 ms
9,600 KB
testcase_26 AC 5 ms
9,600 KB
testcase_27 AC 4 ms
9,472 KB
testcase_28 AC 53 ms
18,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<cassert>
using namespace std;
int N;
vector<int>G[2<<17];
int ans[2<<17][2];
void dfs(int u,int p)
{
	int ch=0;
	for(int v:G[u])if(v!=p)
	{
		dfs(v,u);
		ch++;
	}
	if(ch==0)ans[u][0]=ans[u][1]=0;
	else
	{
		ans[u][0]=0;
		ans[u][1]=1e9;
		for(int v:G[u])if(v!=p)
		{
			ans[u][0]=max(ans[u][0],ans[v][1]+1);
			ans[u][1]=min(ans[u][1],ans[v][0]+1);
		}
	}
}
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	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);
	}
	dfs(0,-1);
	cout<<ans[0][0]<<endl;
	cout<<ans[0][1]<<endl;
}
0