結果
問題 | No.1098 LCAs |
ユーザー | srjywrdnprkt |
提出日時 | 2024-03-06 01:21:24 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 374 ms / 2,000 ms |
コード長 | 1,315 bytes |
コンパイル時間 | 2,049 ms |
コンパイル使用メモリ | 211,128 KB |
実行使用メモリ | 27,116 KB |
最終ジャッジ日時 | 2024-09-29 18:09:36 |
合計ジャッジ時間 | 9,104 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 1 ms
6,820 KB |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 1 ms
6,824 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,820 KB |
testcase_10 | AC | 1 ms
6,820 KB |
testcase_11 | AC | 2 ms
6,816 KB |
testcase_12 | AC | 1 ms
6,820 KB |
testcase_13 | AC | 3 ms
6,816 KB |
testcase_14 | AC | 2 ms
6,820 KB |
testcase_15 | AC | 3 ms
6,820 KB |
testcase_16 | AC | 3 ms
6,820 KB |
testcase_17 | AC | 3 ms
6,820 KB |
testcase_18 | AC | 337 ms
19,268 KB |
testcase_19 | AC | 344 ms
19,224 KB |
testcase_20 | AC | 353 ms
19,292 KB |
testcase_21 | AC | 341 ms
19,148 KB |
testcase_22 | AC | 339 ms
19,216 KB |
testcase_23 | AC | 303 ms
21,220 KB |
testcase_24 | AC | 302 ms
21,476 KB |
testcase_25 | AC | 292 ms
21,732 KB |
testcase_26 | AC | 309 ms
21,716 KB |
testcase_27 | AC | 297 ms
21,516 KB |
testcase_28 | AC | 372 ms
26,304 KB |
testcase_29 | AC | 358 ms
27,116 KB |
testcase_30 | AC | 374 ms
26,132 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; int main(){ cin.tie(nullptr); ios_base::sync_with_stdio(false); ll N, A, B; cin >> N; vector<vector<ll>> E(N); for (int i=0; i < N-1; i++){ cin >> A >> B; A--; B--; E[A].push_back(B); E[B].push_back(A); } //部分木のサイズ vector<int> subt(N); auto subtree_size=[&](auto self, int from, int p)->void{ subt[from]=1; for (auto to : E[from]){ if (to == p) continue; self(self, to, from); subt[from] += subt[to]; } }; subtree_size(subtree_size, 0, -1); //各頂点の親 const int LOG=1; vector par(LOG, vector<ll>(N, -1)); auto ancestor=[&](auto self, int from, int p)->void{ for (auto to : E[from]){ if (to == p) continue; par[0][to] = from; self(self, to, from); } }; ancestor(ancestor, 0, -1); for (int i=0; i<N; i++){ ll S = 0, ans=0; vector<ll> v; for (auto x : E[i]){ if (x != par[0][i]){ v.push_back(subt[x]); S += subt[x]; } } for (auto x : v) ans += x*(S-x); cout << ans + subt[i]*2-1 << endl; } return 0; }