結果

問題 No.2427 Tree Distance Two
ユーザー Nzt3Nzt3
提出日時 2023-08-19 00:36:30
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 203 ms / 2,000 ms
コード長 450 bytes
コンパイル時間 2,203 ms
コンパイル使用メモリ 204,868 KB
実行使用メモリ 23,152 KB
最終ジャッジ日時 2024-11-28 12:41:34
合計ジャッジ時間 7,625 ms
ジャッジサーバーID
(参考情報)
judge4 / 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 192 ms
21,120 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 203 ms
21,120 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 157 ms
21,888 KB
testcase_08 AC 175 ms
23,152 KB
testcase_09 AC 168 ms
22,032 KB
testcase_10 AC 181 ms
22,272 KB
testcase_11 AC 164 ms
21,888 KB
testcase_12 AC 175 ms
21,712 KB
testcase_13 AC 187 ms
21,528 KB
testcase_14 AC 109 ms
20,844 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 5 ms
5,248 KB
testcase_21 AC 5 ms
5,248 KB
testcase_22 AC 3 ms
5,248 KB
testcase_23 AC 3 ms
5,248 KB
testcase_24 AC 5 ms
5,248 KB
testcase_25 AC 39 ms
7,936 KB
testcase_26 AC 114 ms
14,336 KB
testcase_27 AC 77 ms
11,264 KB
testcase_28 AC 194 ms
19,948 KB
testcase_29 AC 161 ms
17,792 KB
testcase_30 AC 108 ms
13,952 KB
testcase_31 AC 66 ms
10,112 KB
testcase_32 AC 101 ms
13,760 KB
testcase_33 AC 92 ms
12,672 KB
testcase_34 AC 23 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