結果
問題 | No.2532 Want Play More |
ユーザー |
![]() |
提出日時 | 2023-11-03 21:31:43 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 610 bytes |
コンパイル時間 | 2,000 ms |
コンパイル使用メモリ | 204,820 KB |
実行使用メモリ | 26,752 KB |
最終ジャッジ日時 | 2024-09-25 19:22:46 |
合計ジャッジ時間 | 5,478 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
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; }