結果

問題 No.806 木を道に
ユーザー ukunichiaukunichia
提出日時 2019-03-26 23:24:22
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 760 bytes
コンパイル時間 1,980 ms
コンパイル使用メモリ 169,104 KB
実行使用メモリ 15,488 KB
最終ジャッジ日時 2024-10-11 01:37:43
合計ジャッジ時間 4,745 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,888 KB
testcase_01 AC 3 ms
5,632 KB
testcase_02 AC 3 ms
5,888 KB
testcase_03 AC 4 ms
5,888 KB
testcase_04 AC 3 ms
5,888 KB
testcase_05 AC 4 ms
6,016 KB
testcase_06 AC 4 ms
5,888 KB
testcase_07 AC 3 ms
5,760 KB
testcase_08 AC 3 ms
5,888 KB
testcase_09 AC 4 ms
5,888 KB
testcase_10 AC 21 ms
6,784 KB
testcase_11 AC 18 ms
6,656 KB
testcase_12 AC 81 ms
9,668 KB
testcase_13 AC 57 ms
8,704 KB
testcase_14 AC 76 ms
9,468 KB
testcase_15 AC 81 ms
9,600 KB
testcase_16 AC 29 ms
7,040 KB
testcase_17 AC 70 ms
8,960 KB
testcase_18 AC 9 ms
6,144 KB
testcase_19 AC 21 ms
6,912 KB
testcase_20 AC 68 ms
9,060 KB
testcase_21 AC 37 ms
7,680 KB
testcase_22 AC 94 ms
10,240 KB
testcase_23 AC 93 ms
10,184 KB
testcase_24 AC 43 ms
12,160 KB
testcase_25 AC 65 ms
15,488 KB
testcase_26 AC 21 ms
7,364 KB
testcase_27 AC 67 ms
10,108 KB
testcase_28 AC 5 ms
6,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using Pi = pair<int, int>;
using Pii = pair<int, Pi>;
using vint = vector<int>;

int N;
vint G[100010];
int far[100010];
int far_idx[100010];
int cost[100010];

void dfs(int u, int p) {
  far[u] = 0;
  far_idx[u] = u;
  for(int v : G[u]) {
    if(v == p) continue;
    dfs(v, u);
    if(far[u] < far[v]+1) {
      far[u] = far[v] + 1;
      far_idx[u] = far_idx[v];
    }
  }
  cost[u] = 0;
  for(int v : G[u]) {
    if(v == p) continue;
    cost[u] += cost[v] + (far_idx[v]!=far_idx[u]);
  }
}

int main() {
  cin >> N;
  for(int i = 0; i < N-1; ++i) {
    int a, b;
    cin >> a >> b;
    --a, --b;
    G[a].push_back(b);
    G[b].push_back(a);
  }
  dfs(0, -1);
  cout << cost[0] - (G[0].size()>1) << endl;
}
0