結果

問題 No.2532 Want Play More
ユーザー keisuke6keisuke6
提出日時 2023-11-03 21:32:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 198 ms / 2,000 ms
コード長 616 bytes
コンパイル時間 2,427 ms
コンパイル使用メモリ 206,476 KB
実行使用メモリ 26,624 KB
最終ジャッジ日時 2024-09-25 19:24:25
合計ジャッジ時間 5,387 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
7,864 KB
testcase_01 AC 193 ms
15,264 KB
testcase_02 AC 198 ms
15,224 KB
testcase_03 AC 193 ms
14,976 KB
testcase_04 AC 191 ms
14,848 KB
testcase_05 AC 162 ms
14,592 KB
testcase_06 AC 147 ms
26,624 KB
testcase_07 AC 6 ms
8,064 KB
testcase_08 AC 10 ms
8,152 KB
testcase_09 AC 9 ms
8,160 KB
testcase_10 AC 81 ms
11,264 KB
testcase_11 AC 80 ms
11,264 KB
testcase_12 AC 126 ms
13,348 KB
testcase_13 AC 95 ms
12,032 KB
testcase_14 AC 31 ms
9,344 KB
testcase_15 AC 184 ms
15,212 KB
testcase_16 AC 167 ms
14,032 KB
testcase_17 AC 9 ms
8,192 KB
testcase_18 AC 114 ms
12,616 KB
testcase_19 AC 147 ms
14,208 KB
testcase_20 AC 4 ms
7,936 KB
testcase_21 AC 4 ms
7,936 KB
testcase_22 AC 4 ms
8,064 KB
testcase_23 AC 4 ms
7,952 KB
testcase_24 AC 4 ms
7,936 KB
testcase_25 AC 4 ms
7,864 KB
testcase_26 AC 4 ms
7,936 KB
testcase_27 AC 4 ms
8,064 KB
testcase_28 AC 108 ms
15,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define int long long
vector<vector<int>> G(200100);
pair<int,int> f(int x, int p){
	pair<int,int> ans = {0,1e18};
	bool k = true;
	for(int y:G[x])if(y != p){
		pair<int,int> a = f(y,x);
		ans.first = max(ans.first,a.second+1);
		ans.second = min(ans.second,a.first+1);
		k = false;
	}
	if(k) ans = {0,0};
	return ans;
}
signed main(){
    int N;
    cin>>N;
    for(int i=0;i<N-1;i++){
    	int a,b;
    	cin>>a>>b;
    	a--;
    	b--;
    	G[a].push_back(b);
    	G[b].push_back(a);
    }
    pair<int,int> a = f(0,-1);
    cout<<a.first<<endl;cout<<a.second<<endl;
}
0