結果

問題 No.1484 木に数を書き込む問題 / Just Write Numbers! 2
ユーザー hiro71687khiro71687k
提出日時 2023-03-28 20:14:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 204 ms / 2,000 ms
コード長 1,431 bytes
コンパイル時間 4,561 ms
コンパイル使用メモリ 267,932 KB
実行使用メモリ 19,104 KB
最終ジャッジ日時 2024-09-20 08:58:54
合計ジャッジ時間 9,861 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 5 ms
6,940 KB
testcase_05 AC 14 ms
6,940 KB
testcase_06 AC 14 ms
6,940 KB
testcase_07 AC 8 ms
6,944 KB
testcase_08 AC 17 ms
6,944 KB
testcase_09 AC 13 ms
6,944 KB
testcase_10 AC 12 ms
6,944 KB
testcase_11 AC 11 ms
6,944 KB
testcase_12 AC 10 ms
6,940 KB
testcase_13 AC 3 ms
6,944 KB
testcase_14 AC 148 ms
14,344 KB
testcase_15 AC 134 ms
13,796 KB
testcase_16 AC 120 ms
12,884 KB
testcase_17 AC 86 ms
10,584 KB
testcase_18 AC 159 ms
15,184 KB
testcase_19 AC 186 ms
17,160 KB
testcase_20 AC 185 ms
17,096 KB
testcase_21 AC 192 ms
17,284 KB
testcase_22 AC 204 ms
17,160 KB
testcase_23 AC 185 ms
17,096 KB
testcase_24 AC 183 ms
17,224 KB
testcase_25 AC 178 ms
17,164 KB
testcase_26 AC 174 ms
17,212 KB
testcase_27 AC 178 ms
17,164 KB
testcase_28 AC 178 ms
17,164 KB
testcase_29 AC 139 ms
15,700 KB
testcase_30 AC 137 ms
15,700 KB
testcase_31 AC 109 ms
19,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll=long long;
using ld=long double;
ld pie=3.141592653589793;
ll inf=14449999999999994;
ll mod=1000000007;
int main(){
    ll n;
    cin >> n;
    vector<vector<ll>>g(n);
    for (ll i = 0; i < n-1; i++)
    {
        ll a,b;
        cin >> a >> b;a--,b--;
        g[a].push_back(b);
        g[b].push_back(a);
    }
    vector<ll>memo(n,inf);
    memo[0]=0;
    queue<ll>que;
    que.push(0);
    while (!que.empty())
    {
        ll v=que.front();
        que.pop();
        for (ll i = 0; i < g[v].size(); i++)
        {
            if (memo[g[v][i]]>memo[v]+1)
            {
                memo[g[v][i]]=memo[v]+1;
                que.push(g[v][i]);
            }
        }
    }
    ll id=0,x=0;
    for (ll i = 0; i < n; i++)
    {
        if (memo[i]>x)
        {
            id=i;
            x=memo[i];
        }
    }
    que.push(id);
    for (ll i = 0; i < n; i++)
    {
        memo[i]=inf;
    }
    memo[id]=0;
    while (!que.empty())
    {
        ll v=que.front();
        que.pop();
        for (ll i = 0; i < g[v].size(); i++)
        {
            if (memo[g[v][i]]>memo[v]+1)
            {
                memo[g[v][i]]=memo[v]+1;
                que.push(g[v][i]);
            }
        }
    }
    x=0;
    for (ll i = 0; i < n ; i++)
    {
        x=max(x,memo[i]);
    }
    cout << 2*(n-1)-x << endl;
}
0