結果

問題 No.1098 LCAs
ユーザー betrue12betrue12
提出日時 2020-06-26 21:41:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 479 ms / 2,000 ms
コード長 644 bytes
コンパイル時間 2,040 ms
コンパイル使用メモリ 206,912 KB
実行使用メモリ 23,808 KB
最終ジャッジ日時 2024-07-04 20:16:10
合計ジャッジ時間 9,456 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
8,096 KB
testcase_01 AC 4 ms
7,992 KB
testcase_02 AC 4 ms
8,112 KB
testcase_03 AC 4 ms
8,160 KB
testcase_04 AC 3 ms
8,136 KB
testcase_05 AC 5 ms
8,016 KB
testcase_06 AC 4 ms
8,192 KB
testcase_07 AC 4 ms
8,156 KB
testcase_08 AC 3 ms
8,184 KB
testcase_09 AC 4 ms
8,188 KB
testcase_10 AC 5 ms
8,100 KB
testcase_11 AC 5 ms
8,180 KB
testcase_12 AC 5 ms
8,128 KB
testcase_13 AC 6 ms
8,164 KB
testcase_14 AC 6 ms
8,020 KB
testcase_15 AC 6 ms
8,064 KB
testcase_16 AC 7 ms
8,192 KB
testcase_17 AC 6 ms
8,044 KB
testcase_18 AC 449 ms
17,436 KB
testcase_19 AC 440 ms
17,456 KB
testcase_20 AC 438 ms
17,524 KB
testcase_21 AC 446 ms
17,536 KB
testcase_22 AC 442 ms
17,440 KB
testcase_23 AC 397 ms
18,004 KB
testcase_24 AC 376 ms
18,020 KB
testcase_25 AC 376 ms
18,072 KB
testcase_26 AC 401 ms
18,020 KB
testcase_27 AC 403 ms
18,076 KB
testcase_28 AC 479 ms
23,168 KB
testcase_29 AC 470 ms
23,808 KB
testcase_30 AC 453 ms
23,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    int N;
    cin >> N;
    vector<int> edges[200000];
    for(int i=0; i<N-1; i++){
        int a, b;
        cin >> a >> b;
        a--; b--;
        edges[a].push_back(b);
        edges[b].push_back(a);
    }

    vector<int64_t> sum(N), ans(N);
    auto dfs = [&](auto&& dfs, int i, int p)->void{
        for(int j : edges[i]) if(j != p){
            dfs(dfs, j, i);
            sum[i] += sum[j];
            ans[i] -= sum[j]*sum[j];
        }
        sum[i]++;
        ans[i] += sum[i]*sum[i];
    };
    dfs(dfs, 0, -1);
    for(auto a : ans) cout << a << endl;
    return 0;
}
0