結果

問題 No.1098 LCAs
ユーザー IKyoproIKyopro
提出日時 2020-06-26 21:28:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 882 bytes
コンパイル時間 2,164 ms
コンパイル使用メモリ 207,604 KB
実行使用メモリ 28,004 KB
最終ジャッジ日時 2024-07-04 19:42:21
合計ジャッジ時間 5,141 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 107 ms
17,500 KB
testcase_19 AC 113 ms
17,408 KB
testcase_20 AC 106 ms
17,536 KB
testcase_21 AC 104 ms
17,432 KB
testcase_22 AC 101 ms
17,432 KB
testcase_23 AC 81 ms
18,028 KB
testcase_24 AC 87 ms
17,908 KB
testcase_25 AC 78 ms
17,972 KB
testcase_26 AC 84 ms
18,104 KB
testcase_27 AC 80 ms
18,100 KB
testcase_28 AC 131 ms
27,096 KB
testcase_29 AC 141 ms
28,004 KB
testcase_30 AC 152 ms
27,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
template <class T, class U> using Pa = pair<T, U>;
template <class T> using vec = vector<T>;
template <class T> using vvec = vector<vec<T>>;

int main(){
    cin.tie(0);
    ios::sync_with_stdio(false);
    int N;
    cin >> N;
    vvec<int> g(N);
    for(int i=0;i<N-1;i++){
        int a,b;
        cin >> a >> b;
        a--; b--;
        g[a].push_back(b);
        g[b].push_back(a);
    }
    vec<ll> ans(N),s(N);
    auto dfs = [&](auto&& self,int cur,int par)->void{
        ll sum = 0,sum2 = 0;
        for(auto& to:g[cur]) if(to!=par){
            self(self,to,cur);
            sum += s[to];
            sum2 += s[to]*s[to];
            s[cur] += s[to];
        }
        s[cur]++;
        ans[cur] = (sum*sum-sum2)+2*s[cur]-1;
    };
    dfs(dfs,0,-1);
    for(int i=0;i<N;i++) cout << ans[i] << "\n";
}
0