結果

問題 No.2427 Tree Distance Two
ユーザー Nzt3Nzt3
提出日時 2023-08-19 00:36:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 450 bytes
コンパイル時間 2,108 ms
コンパイル使用メモリ 204,168 KB
実行使用メモリ 23,040 KB
最終ジャッジ日時 2024-05-06 07:34:33
合計ジャッジ時間 6,982 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 165 ms
21,120 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 162 ms
20,992 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 133 ms
21,984 KB
testcase_08 AC 152 ms
23,040 KB
testcase_09 AC 148 ms
21,888 KB
testcase_10 AC 156 ms
22,400 KB
testcase_11 AC 138 ms
21,764 KB
testcase_12 AC 144 ms
21,580 KB
testcase_13 AC 153 ms
21,528 KB
testcase_14 AC 111 ms
20,736 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 4 ms
5,376 KB
testcase_21 AC 5 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 4 ms
5,376 KB
testcase_25 AC 32 ms
7,936 KB
testcase_26 AC 80 ms
14,336 KB
testcase_27 AC 55 ms
11,264 KB
testcase_28 AC 141 ms
19,840 KB
testcase_29 AC 120 ms
17,664 KB
testcase_30 AC 81 ms
13,952 KB
testcase_31 AC 50 ms
10,240 KB
testcase_32 AC 84 ms
13,824 KB
testcase_33 AC 67 ms
12,672 KB
testcase_34 AC 19 ms
6,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int N;
  cin>>N;
  vector<vector<int>>G(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);
  }
  vector<int>ans(N);
  for(int i=0;i<N;i++){
    for(int j:G[i]){
      ans[i]+=G[j].size()-1;
    }
  }
  for(int i=0;i<N;i++){
    cout<<ans[i]<<'\n';
  }
}
0