結果

問題 No.2427 Tree Distance Two
ユーザー hatsuka_iwahatsuka_iwa
提出日時 2023-09-04 19:00:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 733 ms / 2,000 ms
コード長 562 bytes
コンパイル時間 2,337 ms
コンパイル使用メモリ 208,196 KB
実行使用メモリ 38,904 KB
最終ジャッジ日時 2024-06-22 16:45:50
合計ジャッジ時間 17,719 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 733 ms
21,220 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 722 ms
21,144 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 670 ms
22,108 KB
testcase_08 AC 690 ms
23,032 KB
testcase_09 AC 665 ms
21,968 KB
testcase_10 AC 682 ms
22,376 KB
testcase_11 AC 666 ms
22,656 KB
testcase_12 AC 686 ms
21,612 KB
testcase_13 AC 716 ms
21,400 KB
testcase_14 AC 602 ms
38,904 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 17 ms
6,940 KB
testcase_21 AC 20 ms
6,944 KB
testcase_22 AC 6 ms
6,944 KB
testcase_23 AC 5 ms
6,944 KB
testcase_24 AC 17 ms
6,940 KB
testcase_25 AC 174 ms
8,064 KB
testcase_26 AC 441 ms
14,340 KB
testcase_27 AC 313 ms
11,236 KB
testcase_28 AC 669 ms
19,920 KB
testcase_29 AC 595 ms
17,980 KB
testcase_30 AC 430 ms
14,056 KB
testcase_31 AC 266 ms
10,284 KB
testcase_32 AC 431 ms
13,836 KB
testcase_33 AC 366 ms
12,720 KB
testcase_34 AC 107 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
  int N; cin >> N;
  vector<int> Ans(N + 1);
  vector<vector<int>> Graph(N + 1);

  for (int i = 0; i < N - 1; i++) {
    int u, v; cin >> u >> v;
    Graph.at(u).push_back(v);
    Graph.at(v).push_back(u);
  }

  auto DFS = [&](auto DFS, int x, int p) -> void {
    for (int to : Graph.at(x)) {
      if (to == p) continue;
      Ans.at(p)++;
      Ans.at(to) += Graph.at(x).size() - 1;
      DFS(DFS, to, x);
    }
  };
  
  DFS(DFS, 1, 0);
  for (int i = 1; i <= N; i++) cout << Ans.at(i) << endl;
}
0