結果

問題 No.2427 Tree Distance Two
ユーザー kt_soupkt_soup
提出日時 2023-08-18 21:25:45
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 775 ms / 2,000 ms
コード長 360 bytes
コンパイル時間 640 ms
コンパイル使用メモリ 71,424 KB
実行使用メモリ 21,888 KB
最終ジャッジ日時 2024-11-28 05:36:50
合計ジャッジ時間 14,006 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 775 ms
19,968 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 769 ms
20,096 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 686 ms
20,808 KB
testcase_08 AC 709 ms
21,888 KB
testcase_09 AC 674 ms
20,864 KB
testcase_10 AC 705 ms
21,376 KB
testcase_11 AC 693 ms
21,356 KB
testcase_12 AC 709 ms
20,408 KB
testcase_13 AC 717 ms
20,356 KB
testcase_14 AC 598 ms
19,584 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 17 ms
5,248 KB
testcase_21 AC 20 ms
5,248 KB
testcase_22 AC 6 ms
5,248 KB
testcase_23 AC 5 ms
5,248 KB
testcase_24 AC 17 ms
5,248 KB
testcase_25 AC 176 ms
7,552 KB
testcase_26 AC 451 ms
13,568 KB
testcase_27 AC 324 ms
10,624 KB
testcase_28 AC 709 ms
18,688 KB
testcase_29 AC 605 ms
17,024 KB
testcase_30 AC 430 ms
13,312 KB
testcase_31 AC 273 ms
9,728 KB
testcase_32 AC 438 ms
13,312 KB
testcase_33 AC 380 ms
12,160 KB
testcase_34 AC 109 ms
6,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
using namespace std;
int main() {
  int N,u,v;
  cin >> N;
  vector<vector<int>> G(N);
  for(int i=1;i<N;i++) {
    cin >> u >> v;
    G[u-1].push_back(v-1);
    G[v-1].push_back(u-1);
  }
  for(int i=0;i<N;i++) {
    int ans = 0;
    for(int j=0;j<G[i].size();j++)ans += G[G[i][j]].size()-1;
    cout << ans << endl;
  }
}
0