結果

問題 No.1484 木に数を書き込む問題 / Just Write Numbers! 2
ユーザー 👑 NachiaNachia
提出日時 2021-04-19 01:03:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 1,050 bytes
コンパイル時間 714 ms
コンパイル使用メモリ 81,540 KB
実行使用メモリ 25,200 KB
最終ジャッジ日時 2024-07-04 04:52:46
合計ジャッジ時間 3,868 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 4 ms
6,940 KB
testcase_05 AC 8 ms
6,940 KB
testcase_06 AC 9 ms
6,944 KB
testcase_07 AC 5 ms
6,940 KB
testcase_08 AC 10 ms
6,948 KB
testcase_09 AC 9 ms
6,940 KB
testcase_10 AC 8 ms
6,940 KB
testcase_11 AC 7 ms
6,940 KB
testcase_12 AC 6 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 91 ms
13,312 KB
testcase_15 AC 87 ms
12,900 KB
testcase_16 AC 78 ms
12,160 KB
testcase_17 AC 55 ms
9,984 KB
testcase_18 AC 92 ms
14,364 KB
testcase_19 AC 130 ms
16,024 KB
testcase_20 AC 115 ms
16,012 KB
testcase_21 AC 109 ms
15,944 KB
testcase_22 AC 115 ms
16,024 KB
testcase_23 AC 112 ms
16,044 KB
testcase_24 AC 111 ms
16,064 KB
testcase_25 AC 108 ms
16,128 KB
testcase_26 AC 116 ms
15,880 KB
testcase_27 AC 113 ms
16,096 KB
testcase_28 AC 113 ms
16,048 KB
testcase_29 AC 78 ms
25,200 KB
testcase_30 AC 85 ms
19,580 KB
testcase_31 AC 56 ms
16,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <string>
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
using ull = unsigned long long;
using ll = long long;
#define rep(i,n) for(int i=0; i<(n); i++)

int N;
vector<vector<int>> E;
vector<int> D;
vector<int> P;
vector<int> ans2;
vector<int> ans;

void dfs(int p){
  for(int e:E[p]) if(D[e]==-1){
    P[e] = p;
    D[e] = D[p]+1;
    dfs(e);
  }
}

void dfs2(int p){
  if(D[P[p]]==-1){
    int e=P[p];
    D[e]=0;
    ans2[e] = ans2[p] + 1;
    dfs2(e);
    ans2[p] = ans[e] + 1;
  }
  for(int e:E[p]) if(D[e]==-1){
    D[e]=0;
    ans2[e] = ans2[p] + 1;
    dfs2(e);
    ans2[p] = ans[e] + 1;
  }
  ans[p] = ans2[p];
}

int main(){
  scanf("%d",&N);
  E.resize(N);
  rep(i,N-1){
    int u,v; scanf("%d%d",&u,&v); u--; v--;
    E[u].push_back(v);
    E[v].push_back(u);
  }

  D.assign(N,-1);
  P.assign(N,-1);
  D[0]=0; dfs(0);
  int s=0; rep(i,N) if(D[s]<D[i]) s=i;
  D.assign(N,-1);
  P.assign(N,-1);
  D[s]=0; dfs(s);
  int t=0; rep(i,N) if(D[t]<D[i]) t=i;
  printf("%d\n",(N-1)*2-D[t]);
  return 0;
}

0