結果
問題 | No.806 木を道に |
ユーザー | kappybar |
提出日時 | 2020-04-10 16:10:03 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.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 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
5,504 KB |
testcase_01 | AC | 4 ms
5,504 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 4 ms
5,504 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 3 ms
5,504 KB |
testcase_08 | AC | 4 ms
5,632 KB |
testcase_09 | AC | 4 ms
5,504 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 42 ms
9,728 KB |
testcase_25 | AC | 62 ms
11,776 KB |
testcase_26 | AC | 21 ms
6,784 KB |
testcase_27 | AC | 67 ms
8,952 KB |
testcase_28 | AC | 5 ms
5,760 KB |
ソースコード
#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; }