結果

問題 No.1098 LCAs
ユーザー face4face4
提出日時 2020-07-24 15:59:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 624 ms / 2,000 ms
コード長 744 bytes
コンパイル時間 812 ms
コンパイル使用メモリ 71,936 KB
実行使用メモリ 43,264 KB
最終ジャッジ日時 2024-06-25 07:08:55
合計ジャッジ時間 9,649 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
12,800 KB
testcase_01 AC 10 ms
12,800 KB
testcase_02 AC 9 ms
12,800 KB
testcase_03 AC 9 ms
12,800 KB
testcase_04 AC 9 ms
12,800 KB
testcase_05 AC 9 ms
12,672 KB
testcase_06 AC 9 ms
12,800 KB
testcase_07 AC 9 ms
12,800 KB
testcase_08 AC 9 ms
12,800 KB
testcase_09 AC 9 ms
12,800 KB
testcase_10 AC 9 ms
12,800 KB
testcase_11 AC 9 ms
12,800 KB
testcase_12 AC 9 ms
12,672 KB
testcase_13 AC 12 ms
12,928 KB
testcase_14 AC 11 ms
12,928 KB
testcase_15 AC 11 ms
12,928 KB
testcase_16 AC 11 ms
12,928 KB
testcase_17 AC 11 ms
12,928 KB
testcase_18 AC 535 ms
23,040 KB
testcase_19 AC 542 ms
23,040 KB
testcase_20 AC 546 ms
23,040 KB
testcase_21 AC 544 ms
23,040 KB
testcase_22 AC 540 ms
23,040 KB
testcase_23 AC 420 ms
22,068 KB
testcase_24 AC 429 ms
22,048 KB
testcase_25 AC 411 ms
21,880 KB
testcase_26 AC 448 ms
22,012 KB
testcase_27 AC 428 ms
21,884 KB
testcase_28 AC 609 ms
41,856 KB
testcase_29 AC 624 ms
43,264 KB
testcase_30 AC 616 ms
41,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
using namespace std;

vector<int> v[200000], child, way[200000];

void dfs(int p, int x){
    child[x] = 1;
    for(int c : v[x]){
        if(c == p)  continue;
        dfs(x, c);
        way[x].push_back(c);
        child[x] += child[c];
    }
}

typedef long long ll;

int main(){
    int n;
    cin >> n;
    child.resize(n, 0);
    for(int i = 0; i < n-1; i++){
        int a, b;
        cin >> a >> b;
        a--, b--;
        v[a].push_back(b);
        v[b].push_back(a);
    }
    dfs(-1, 0);
    for(int i = 0; i < n; i++){
        ll ans = 2*child[i]-1;
        for(int c : way[i]){
            ans += (ll)child[c]*(child[i]-1-child[c]);
        }
        cout << ans << endl;
    }
    return 0;
}
0