結果

問題 No.1098 LCAs
ユーザー onsen_manjuuuonsen_manjuuu
提出日時 2020-07-05 11:04:41
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 510 ms / 2,000 ms
コード長 750 bytes
コンパイル時間 1,867 ms
コンパイル使用メモリ 175,076 KB
実行使用メモリ 30,976 KB
最終ジャッジ日時 2024-09-22 06:19:40
合計ジャッジ時間 10,657 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 3 ms
6,944 KB
testcase_14 AC 4 ms
6,940 KB
testcase_15 AC 3 ms
6,944 KB
testcase_16 AC 4 ms
6,940 KB
testcase_17 AC 3 ms
6,940 KB
testcase_18 AC 474 ms
16,852 KB
testcase_19 AC 460 ms
16,708 KB
testcase_20 AC 467 ms
16,668 KB
testcase_21 AC 468 ms
16,872 KB
testcase_22 AC 470 ms
16,776 KB
testcase_23 AC 409 ms
17,156 KB
testcase_24 AC 410 ms
17,164 KB
testcase_25 AC 401 ms
17,228 KB
testcase_26 AC 439 ms
17,356 KB
testcase_27 AC 430 ms
17,352 KB
testcase_28 AC 499 ms
29,824 KB
testcase_29 AC 508 ms
30,976 KB
testcase_30 AC 510 ms
29,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;
using ll = long long;

int n;
vector<vector<int>> hen;
vector<int> dp;
vector<ll> ans;

int dfs(int v, int par) {
    
    if(dp[v])return dp[v];

    ll sum = 1;
    ll res = 0;

    for(auto i : hen[v]) {
        if(i == par)continue;
        ll cur = dfs(i, v);
        sum += cur;
        res -= cur * cur;
    }

    res += (sum) * sum;
    ans[v] =res;

    return dp[v] = sum;

}


int main()
{
    cin >> n;
    hen.resize(n), dp.resize(n), ans.resize(n);
    for(int i = 0; i < n - 1; i++) {
        int s, t; cin >> s >> t; s--, t--;
        hen[s].emplace_back(t);
        hen[t].emplace_back(s);
    }
    dfs(0, -1);

    for(int i = 0; i < n; i++) {
        cout << ans[i] << endl;
    }

}
0