結果

問題 No.1098 LCAs
ユーザー ぷらぷら
提出日時 2021-03-18 22:54:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 542 ms / 2,000 ms
コード長 756 bytes
コンパイル時間 1,819 ms
コンパイル使用メモリ 169,424 KB
実行使用メモリ 36,300 KB
最終ジャッジ日時 2024-11-17 05:00:10
合計ジャッジ時間 11,060 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
8,064 KB
testcase_01 AC 4 ms
8,064 KB
testcase_02 AC 4 ms
8,064 KB
testcase_03 AC 5 ms
8,192 KB
testcase_04 AC 5 ms
8,192 KB
testcase_05 AC 4 ms
8,064 KB
testcase_06 AC 4 ms
8,192 KB
testcase_07 AC 5 ms
8,176 KB
testcase_08 AC 5 ms
8,064 KB
testcase_09 AC 5 ms
8,156 KB
testcase_10 AC 4 ms
8,140 KB
testcase_11 AC 5 ms
8,320 KB
testcase_12 AC 5 ms
8,156 KB
testcase_13 AC 7 ms
8,192 KB
testcase_14 AC 7 ms
8,192 KB
testcase_15 AC 6 ms
8,064 KB
testcase_16 AC 7 ms
8,192 KB
testcase_17 AC 7 ms
8,192 KB
testcase_18 AC 509 ms
16,240 KB
testcase_19 AC 512 ms
16,100 KB
testcase_20 AC 507 ms
16,232 KB
testcase_21 AC 508 ms
16,000 KB
testcase_22 AC 505 ms
16,128 KB
testcase_23 AC 417 ms
18,016 KB
testcase_24 AC 416 ms
18,020 KB
testcase_25 AC 404 ms
18,088 KB
testcase_26 AC 446 ms
18,152 KB
testcase_27 AC 435 ms
18,080 KB
testcase_28 AC 536 ms
34,636 KB
testcase_29 AC 537 ms
36,300 KB
testcase_30 AC 542 ms
34,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int N;
long long dp[200005];
vector<int>ki[200005];

int dfs(int n,int p) {
    vector<int>tmp;
    for(auto x:ki[n]) {
        if(x != p) {
            tmp.push_back(dfs(x,n));
        }
    }
    int ans = 1;
    for(int i = 0; i < tmp.size(); i++) {
        ans += tmp[i];
    }
    long long ans2 = ans;
    for(int i = 0; i < tmp.size(); i++) {
        ans2 += (long long)(ans-tmp[i])*tmp[i];
    }
    dp[n] = ans2;
    return ans;
}

int main() {
    cin >> N;
    for(int i = 0; i < N-1; i++) {
        int u,v;
        cin >> u >> v;
        u--;v--;
        ki[u].push_back(v);
        ki[v].push_back(u);
    }
    dfs(0,-1);
    for(int i = 0; i < N; i++) {
        cout << dp[i] << endl;
    }
}
0