結果

問題 No.2532 Want Play More
ユーザー cho435cho435
提出日時 2023-11-03 23:44:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 223 ms / 2,000 ms
コード長 611 bytes
コンパイル時間 4,635 ms
コンパイル使用メモリ 265,112 KB
実行使用メモリ 39,292 KB
最終ジャッジ日時 2024-09-25 21:35:58
合計ジャッジ時間 7,865 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
8,064 KB
testcase_01 AC 223 ms
14,340 KB
testcase_02 AC 208 ms
14,336 KB
testcase_03 AC 202 ms
14,080 KB
testcase_04 AC 193 ms
13,952 KB
testcase_05 AC 202 ms
13,892 KB
testcase_06 AC 177 ms
39,292 KB
testcase_07 AC 7 ms
8,064 KB
testcase_08 AC 11 ms
8,192 KB
testcase_09 AC 10 ms
8,064 KB
testcase_10 AC 87 ms
10,880 KB
testcase_11 AC 84 ms
10,820 KB
testcase_12 AC 153 ms
12,672 KB
testcase_13 AC 106 ms
11,520 KB
testcase_14 AC 37 ms
9,088 KB
testcase_15 AC 213 ms
14,208 KB
testcase_16 AC 185 ms
13,184 KB
testcase_17 AC 9 ms
8,064 KB
testcase_18 AC 125 ms
12,032 KB
testcase_19 AC 196 ms
13,568 KB
testcase_20 AC 4 ms
7,904 KB
testcase_21 AC 5 ms
7,900 KB
testcase_22 AC 5 ms
8,064 KB
testcase_23 AC 4 ms
7,944 KB
testcase_24 AC 4 ms
7,936 KB
testcase_25 AC 3 ms
7,900 KB
testcase_26 AC 5 ms
7,932 KB
testcase_27 AC 4 ms
8,064 KB
testcase_28 AC 117 ms
16,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

vector<vector<int>> g(2e5);
int dfs(int x,int mx,int par=-1){
	vector<int> v;
	for(auto y:g.at(x)){
		if(y==par) continue;
		v.push_back(dfs(y,mx^1,x));
	}
	if(v.empty()) return 0;
	sort(v.begin(),v.end());
	if(mx) return v.back()+1;
	return v.front()+1;
}

int main(){
	int n;
	cin>>n;
	rep(i,n-1){
		int a,b;
		cin>>a>>b;
		a--; b--;
		g.at(a).push_back(b);
		g.at(b).push_back(a);
	}
	cout<<dfs(0,1)<<endl;
	cout<<dfs(0,0)<<endl;
}
0