結果
問題 |
No.806 木を道に
|
ユーザー |
|
提出日時 | 2020-04-10 16:10:03 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 644 bytes |
コンパイル時間 | 1,625 ms |
コンパイル使用メモリ | 171,636 KB |
実行使用メモリ | 11,776 KB |
最終ジャッジ日時 | 2024-09-15 04:11:26 |
合計ジャッジ時間 | 4,159 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 9 WA * 18 |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=0;i<n;i++) using namespace std; using ll = long long ; using P = pair<ll,ll> ; const ll INF = 1e18; const int MOD = 1000000007; int n = 100005; vector<vector<int>> tree(n,vector<int>()); int mx = 0,id = 0; void dfs(int i,int p=-1,int d=0){ if(d > mx) mx = d,id = i; for(int c:tree[i]){ if(c == p) continue; dfs(c,i,d+1); } } int main(){ cin >> n; rep(i,n-1){ int a,b; cin >> a >> b; --a;--b; tree[a].push_back(b); tree[b].push_back(a); } dfs(0); dfs(id); cout << n-1-mx << endl; return 0; }