結果

問題 No.2427 Tree Distance Two
ユーザー umezoumezo
提出日時 2023-08-22 14:58:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 233 ms / 2,000 ms
コード長 619 bytes
コンパイル時間 2,326 ms
コンパイル使用メモリ 204,312 KB
実行使用メモリ 30,720 KB
最終ジャッジ日時 2024-05-09 20:43:00
合計ジャッジ時間 8,173 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
10,368 KB
testcase_01 AC 5 ms
10,368 KB
testcase_02 AC 5 ms
10,368 KB
testcase_03 AC 226 ms
20,992 KB
testcase_04 AC 5 ms
10,496 KB
testcase_05 AC 233 ms
21,112 KB
testcase_06 AC 5 ms
10,496 KB
testcase_07 AC 150 ms
21,860 KB
testcase_08 AC 217 ms
23,040 KB
testcase_09 AC 174 ms
22,016 KB
testcase_10 AC 205 ms
22,400 KB
testcase_11 AC 165 ms
21,772 KB
testcase_12 AC 191 ms
21,716 KB
testcase_13 AC 190 ms
21,484 KB
testcase_14 AC 113 ms
30,720 KB
testcase_15 AC 4 ms
10,368 KB
testcase_16 AC 4 ms
10,572 KB
testcase_17 AC 5 ms
10,368 KB
testcase_18 AC 5 ms
10,496 KB
testcase_19 AC 5 ms
10,368 KB
testcase_20 AC 8 ms
10,624 KB
testcase_21 AC 9 ms
10,832 KB
testcase_22 AC 6 ms
10,484 KB
testcase_23 AC 6 ms
10,420 KB
testcase_24 AC 8 ms
10,668 KB
testcase_25 AC 39 ms
13,056 KB
testcase_26 AC 113 ms
17,024 KB
testcase_27 AC 72 ms
15,084 KB
testcase_28 AC 208 ms
20,372 KB
testcase_29 AC 189 ms
18,944 KB
testcase_30 AC 107 ms
16,768 KB
testcase_31 AC 59 ms
14,592 KB
testcase_32 AC 113 ms
16,696 KB
testcase_33 AC 94 ms
16,000 KB
testcase_34 AC 26 ms
12,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
 
#include<bits/stdc++.h>
using namespace std;

vector<int> G[300300];
 
int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  int n;
  cin>>n;
  rep(i,n-1){
    int u,v;
    cin>>u>>v;
    u--,v--;
    G[u].push_back(v);
    G[v].push_back(u);
  }
  vector<int> ANS(n);  
  auto dfs=[&](auto dfs,int v,int p)->void{
    for(auto nv:G[v]){
      ANS[nv]+=(int)G[v].size()-1;
      if(nv==p) continue;
      dfs(dfs,nv,v);
    }
  };
  
  dfs(dfs,0,-1);
  rep(i,n) cout<<ANS[i]<<'\n';
  
  return 0;
}
0