結果

問題 No.1098 LCAs
ユーザー MayimgMayimg
提出日時 2020-07-03 14:34:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 205 ms / 2,000 ms
コード長 754 bytes
コンパイル時間 2,234 ms
コンパイル使用メモリ 206,696 KB
実行使用メモリ 36,108 KB
最終ジャッジ日時 2024-09-16 17:02:28
合計ジャッジ時間 7,166 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 205 ms
16,016 KB
testcase_19 AC 158 ms
16,000 KB
testcase_20 AC 156 ms
15,796 KB
testcase_21 AC 160 ms
16,000 KB
testcase_22 AC 155 ms
15,988 KB
testcase_23 AC 100 ms
17,804 KB
testcase_24 AC 98 ms
17,936 KB
testcase_25 AC 91 ms
17,876 KB
testcase_26 AC 101 ms
17,872 KB
testcase_27 AC 99 ms
18,004 KB
testcase_28 AC 198 ms
34,432 KB
testcase_29 AC 192 ms
36,108 KB
testcase_30 AC 188 ms
34,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <bits/stdc++.h>
using namespace std;
vector<vector<int>> g;
vector<long long> ans;
int dfs (int cur, int par) {
  vector<int> v;
  for (int child : g[cur]) if (child != par) {
    v.push_back(dfs(child, cur));
  }
  int tot = accumulate(v.begin(), v.end(), 0);
  for (auto& i : v) ans[cur] += 1LL * i * (tot - i);
  ans[cur] += 2LL * tot;
  ans[cur]++;
  return tot + 1;
}
signed main() { 
  ios::sync_with_stdio(false); cin.tie(0);
  int n;
  cin >> n;
  g = vector<vector<int>>(n);
  ans = vector<long long>(n);
  for (int i = 0; i < n - 1; i++) {
    int u, v;
    cin >> u >> v;
    u--;
    v--;
    g[u].push_back(v);
    g[v].push_back(u);
  }
  dfs(0, -1);
  for (auto& i : ans) cout << i << '\n';
  return 0;
}
0