結果
問題 | No.1098 LCAs |
ユーザー | itohdak |
提出日時 | 2020-07-03 16:16:05 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 175 ms / 2,000 ms |
コード長 | 1,017 bytes |
コンパイル時間 | 1,734 ms |
コンパイル使用メモリ | 174,044 KB |
実行使用メモリ | 29,312 KB |
最終ジャッジ日時 | 2024-09-16 17:07:34 |
合計ジャッジ時間 | 5,260 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 1 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 | 2 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 | 2 ms
5,376 KB |
testcase_18 | AC | 131 ms
17,496 KB |
testcase_19 | AC | 126 ms
17,432 KB |
testcase_20 | AC | 121 ms
17,488 KB |
testcase_21 | AC | 132 ms
17,408 KB |
testcase_22 | AC | 131 ms
17,532 KB |
testcase_23 | AC | 94 ms
17,908 KB |
testcase_24 | AC | 100 ms
17,908 KB |
testcase_25 | AC | 92 ms
18,104 KB |
testcase_26 | AC | 99 ms
18,228 KB |
testcase_27 | AC | 99 ms
18,104 KB |
testcase_28 | AC | 172 ms
28,288 KB |
testcase_29 | AC | 166 ms
29,312 KB |
testcase_30 | AC | 175 ms
28,200 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define ll long long #define REP(i,m,n) for(int i=(int)(m); i<(int)(n); i++) #define rep(i,n) REP(i,0,n) #define RREP(i,m,n) for(int i=(int)(m); i>=(int)(n); i--) #define rrep(i,n) RREP(i,n-1,0) #define all(v) v.begin(), v.end() const int inf = 1e9+7; const ll longinf = 1LL<<60; const ll mod = 1e9+7; int main() { cin.tie(0); ios::sync_with_stdio(false); int N; cin >> N; vector<vector<int>> G(N); rep(i, N-1) { int v, w; cin >> v >> w; v--; w--; G[v].push_back(w); G[w].push_back(v); } vector<ll> nChild(N); vector<ll> ans(N); ll tmp = 0; auto dfs = [&](auto dfs, int cur, int par) -> void { tmp++; ll in = tmp; ll same = 0; for(int ne: G[cur]) { if(ne != par) { dfs(dfs, ne, cur); same += nChild[ne] * nChild[ne]; } } ll out = tmp; nChild[cur] = out-in+1; ans[cur] = nChild[cur] * nChild[cur] - same; }; dfs(dfs, 0, -1); rep(i, N) cout << ans[i] << "\n"; return 0; }