結果

問題 No.1098 LCAs
ユーザー SSRSSSRS
提出日時 2020-05-24 19:48:08
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 587 ms / 2,000 ms
コード長 1,565 bytes
コンパイル時間 2,005 ms
コンパイル使用メモリ 180,340 KB
実行使用メモリ 43,036 KB
最終ジャッジ日時 2024-11-22 16:20:20
合計ジャッジ時間 10,172 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 4 ms
5,248 KB
testcase_14 AC 4 ms
5,248 KB
testcase_15 AC 4 ms
5,248 KB
testcase_16 AC 4 ms
5,248 KB
testcase_17 AC 4 ms
5,248 KB
testcase_18 AC 522 ms
28,544 KB
testcase_19 AC 525 ms
28,544 KB
testcase_20 AC 519 ms
28,608 KB
testcase_21 AC 526 ms
28,672 KB
testcase_22 AC 521 ms
28,544 KB
testcase_23 AC 423 ms
27,548 KB
testcase_24 AC 428 ms
27,620 KB
testcase_25 AC 421 ms
27,700 KB
testcase_26 AC 456 ms
27,696 KB
testcase_27 AC 442 ms
27,684 KB
testcase_28 AC 581 ms
41,984 KB
testcase_29 AC 575 ms
43,036 KB
testcase_30 AC 587 ms
41,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int MAX_N = 200000;
struct unionfind{
  vector<int> p;
  unionfind(int N){
    p = vector<int>(N, -1);
  }
  int root(int x){
    if (p[x] == -1){
      return x;
    } else {
      p[x] = root(p[x]);
      return p[x];
    }
  }
  bool same(int x, int y){
    return root(x) == root(y);
  }
  void unite(int x, int y){
    x = root(x);
    y = root(y);
    if (x != y){
      p[x] = y;
    }
  }
};
void dfs(vector<pair<long long, long long>> &dp, vector<vector<int>> &c, int v){
  for (int w : c[v]){
    dfs(dp, c, w);
    dp[v].first += dp[w].first + 1;
    dp[v].second += (dp[w].first + 1) * (dp[w].first + 1);
  }
  return;
}
int main(){
  int N;
  cin >> N;
  assert(1 <= N);
  assert(N <= MAX_N);
  vector<vector<int>> E(N);
  unionfind UF(N);
  for (int i = 0; i < N - 1; i++){
    int u, v;
    cin >> u >> v;
    assert(1 <= u);
    assert(u <= N);
    assert(1 <= v);
    assert(v <= N);
    u--;
    v--;
    assert(!UF.same(u, v));
    E[u].push_back(v);
    E[v].push_back(u);
  }
  vector<int> p(N, -1);
  vector<vector<int>> c(N);
  queue<int> Q;
  Q.push(0);
  while (!Q.empty()){
    int v = Q.front();
    Q.pop();
    for (int w : E[v]){
      if (w != p[v]){
        c[v].push_back(w);
        p[w] = v;
        Q.push(w);
      }
    }
  }
  vector<pair<long long, long long>> dp(N);
  dfs(dp, c, 0);
  vector<long long> ans(N);
  for (int i = 0; i < N; i++){
    ans[i] = (dp[i].first + 1) * (dp[i].first + 1) - dp[i].second;
  }
  for (int i = 0; i < N; i++){
    cout << ans[i] << endl;
  }
}
0