結果
問題 | No.1098 LCAs |
ユーザー | SSRS |
提出日時 | 2020-05-23 01:00:25 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 846 bytes |
コンパイル時間 | 1,645 ms |
コンパイル使用メモリ | 174,612 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-22 16:20:26 |
合計ジャッジ時間 | 5,141 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
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 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int MAX_N = 200000; 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<int> p(N); for (int i = 1; i < N; i++){ cin >> p[i]; assert(1 <= p[i]); assert(p[i] <= i); p[i]--; } vector<vector<int>> c(N); for (int i = 1; i < N; i++){ c[p[i]].push_back(i); } 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; } }