結果

問題 No.806 木を道に
ユーザー kappybarkappybar
提出日時 2020-04-10 16:10:03
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 644 bytes
コンパイル時間 1,485 ms
コンパイル使用メモリ 168,644 KB
実行使用メモリ 11,976 KB
最終ジャッジ日時 2023-10-13 06:56:11
合計ジャッジ時間 4,063 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,196 KB
testcase_01 AC 3 ms
5,308 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 3 ms
5,428 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 4 ms
5,196 KB
testcase_08 AC 3 ms
5,424 KB
testcase_09 AC 3 ms
5,288 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 38 ms
9,364 KB
testcase_25 AC 57 ms
11,976 KB
testcase_26 AC 20 ms
6,424 KB
testcase_27 AC 61 ms
8,984 KB
testcase_28 AC 4 ms
5,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0