結果

問題 No.1098 LCAs
ユーザー どららどらら
提出日時 2020-06-26 23:16:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 558 ms / 2,000 ms
コード長 913 bytes
コンパイル時間 1,765 ms
コンパイル使用メモリ 168,968 KB
実行使用メモリ 40,004 KB
最終ジャッジ日時 2024-07-04 23:52:19
合計ジャッジ時間 9,632 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
8,064 KB
testcase_01 AC 5 ms
8,192 KB
testcase_02 AC 5 ms
8,064 KB
testcase_03 AC 4 ms
8,192 KB
testcase_04 AC 4 ms
8,064 KB
testcase_05 AC 5 ms
8,192 KB
testcase_06 AC 4 ms
8,064 KB
testcase_07 AC 5 ms
8,064 KB
testcase_08 AC 4 ms
8,192 KB
testcase_09 AC 4 ms
8,064 KB
testcase_10 AC 4 ms
8,192 KB
testcase_11 AC 5 ms
8,192 KB
testcase_12 AC 4 ms
8,192 KB
testcase_13 AC 7 ms
8,192 KB
testcase_14 AC 6 ms
8,192 KB
testcase_15 AC 7 ms
8,064 KB
testcase_16 AC 7 ms
8,192 KB
testcase_17 AC 6 ms
8,192 KB
testcase_18 AC 504 ms
16,968 KB
testcase_19 AC 500 ms
16,896 KB
testcase_20 AC 504 ms
16,924 KB
testcase_21 AC 506 ms
16,896 KB
testcase_22 AC 511 ms
17,004 KB
testcase_23 AC 416 ms
18,780 KB
testcase_24 AC 414 ms
18,800 KB
testcase_25 AC 401 ms
18,852 KB
testcase_26 AC 431 ms
18,772 KB
testcase_27 AC 429 ms
18,904 KB
testcase_28 AC 558 ms
38,016 KB
testcase_29 AC 545 ms
40,004 KB
testcase_30 AC 557 ms
37,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define REP(i,a,n) for(int i=(a); i<(int)(n); i++)
#define rep(i,n) REP(i,0,n)
#define FOR(it,c) for(__typeof((c).begin()) it=(c).begin(); it!=(c).end(); ++it)
#define ALLOF(c) (c).begin(), (c).end()
typedef long long ll;
typedef unsigned long long ull;

vector<int> G[200005];
int cnt[200005];
ll ans[200005];

int dfs(int v, int p){
  int sum = 0;
  vector<int> tmp;
  rep(i,G[v].size()){
    if(G[v][i] == p) continue;
    int res = dfs(G[v][i], v);
    tmp.push_back(res);
    sum += res;
  }

  ll x = sum;
  rep(i,tmp.size()){
    ll a = tmp[i];
    ll b = sum - tmp[i] + 1;
    x += a * b;
  }
  ans[v] = x + 1;
  
  return cnt[v] = sum + 1;
}

int main(){
  int N;
  cin >> N;
  rep(i,N-1){
    int a, b;
    cin >> a >> b;
    G[a].push_back(b);
    G[b].push_back(a);
  }

  dfs(1, -1);
  
  REP(i,1,N+1){
    cout << ans[i] << endl;
  }
  
  return 0;
}


0