結果

問題 No.1484 木に数を書き込む問題 / Just Write Numbers! 2
ユーザー umezoumezo
提出日時 2021-04-19 04:29:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 200 ms / 2,000 ms
コード長 697 bytes
コンパイル時間 2,019 ms
コンパイル使用メモリ 203,116 KB
実行使用メモリ 20,548 KB
最終ジャッジ日時 2024-07-04 04:57:12
合計ジャッジ時間 6,547 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
8,208 KB
testcase_01 AC 3 ms
8,516 KB
testcase_02 AC 4 ms
8,156 KB
testcase_03 AC 4 ms
8,276 KB
testcase_04 AC 6 ms
8,404 KB
testcase_05 AC 15 ms
9,032 KB
testcase_06 AC 16 ms
8,748 KB
testcase_07 AC 11 ms
8,488 KB
testcase_08 AC 17 ms
8,832 KB
testcase_09 AC 15 ms
8,756 KB
testcase_10 AC 16 ms
8,772 KB
testcase_11 AC 13 ms
8,664 KB
testcase_12 AC 12 ms
8,588 KB
testcase_13 AC 4 ms
8,132 KB
testcase_14 AC 140 ms
14,000 KB
testcase_15 AC 131 ms
13,640 KB
testcase_16 AC 117 ms
13,304 KB
testcase_17 AC 85 ms
11,952 KB
testcase_18 AC 162 ms
14,420 KB
testcase_19 AC 198 ms
15,236 KB
testcase_20 AC 197 ms
15,428 KB
testcase_21 AC 195 ms
15,348 KB
testcase_22 AC 185 ms
15,404 KB
testcase_23 AC 197 ms
15,324 KB
testcase_24 AC 192 ms
15,420 KB
testcase_25 AC 199 ms
15,352 KB
testcase_26 AC 198 ms
15,412 KB
testcase_27 AC 200 ms
15,352 KB
testcase_28 AC 190 ms
15,432 KB
testcase_29 AC 153 ms
20,548 KB
testcase_30 AC 152 ms
17,260 KB
testcase_31 AC 109 ms
15,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define ALL(v) v.begin(), v.end()
typedef long long ll;

#include <bits/stdc++.h>
using namespace std;

vector<int> G[200020];
int dist[200020];

void dfs(int v,int p,int d){
  dist[v]=d;
  for(auto nv:G[v]){
    if(nv==p) continue;
    dfs(nv,v,d+1);
  }
}

int main(){
  int n;
  cin>>n;
  rep(i,n-1){
    int a,b;
    cin>>a>>b;
    a--,b--;
    G[a].push_back(b);
    G[b].push_back(a);
  }
  
  dfs(0,-1,0);
  int p=0;
  int ma=0;
  rep(i,n){
    if(dist[i]>ma){
      ma=dist[i];
      p=i;
    }
  }
  
  rep(i,n) dist[i]=0;
  dfs(p,-1,0);
  ma=0;
  rep(i,n){
    if(dist[i]>ma) ma=dist[i];
  }
  cout<<2*(n-1)-ma<<endl;
  
  return 0;
}
0