結果
| 問題 | No.2532 Want Play More |
| コンテスト | |
| ユーザー |
keisuke6
|
| 提出日時 | 2023-11-03 21:31:43 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 610 bytes |
| 記録 | |
| コンパイル時間 | 1,234 ms |
| コンパイル使用メモリ | 214,204 KB |
| 実行使用メモリ | 26,752 KB |
| 最終ジャッジ日時 | 2026-07-02 22:25:35 |
| 合計ジャッジ時間 | 4,046 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 26 |
ソースコード
#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<<' '<<a.second<<endl;
}
keisuke6