結果

問題 No.1098 LCAs
ユーザー kyoprounokyoprouno
提出日時 2020-06-27 00:56:21
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 582 ms / 2,000 ms
コード長 1,467 bytes
コンパイル時間 2,484 ms
コンパイル使用メモリ 179,752 KB
実行使用メモリ 24,320 KB
最終ジャッジ日時 2024-07-05 03:21:00
合計ジャッジ時間 12,015 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
8,064 KB
testcase_01 AC 6 ms
8,192 KB
testcase_02 AC 5 ms
8,064 KB
testcase_03 AC 5 ms
8,064 KB
testcase_04 AC 6 ms
8,192 KB
testcase_05 AC 6 ms
8,064 KB
testcase_06 AC 6 ms
8,064 KB
testcase_07 AC 6 ms
8,192 KB
testcase_08 AC 5 ms
8,192 KB
testcase_09 AC 5 ms
8,064 KB
testcase_10 AC 6 ms
8,064 KB
testcase_11 AC 5 ms
8,192 KB
testcase_12 AC 6 ms
8,192 KB
testcase_13 AC 7 ms
8,192 KB
testcase_14 AC 7 ms
8,192 KB
testcase_15 AC 7 ms
8,192 KB
testcase_16 AC 7 ms
8,192 KB
testcase_17 AC 7 ms
8,064 KB
testcase_18 AC 552 ms
18,816 KB
testcase_19 AC 510 ms
18,944 KB
testcase_20 AC 501 ms
18,816 KB
testcase_21 AC 517 ms
18,816 KB
testcase_22 AC 502 ms
18,688 KB
testcase_23 AC 426 ms
18,664 KB
testcase_24 AC 423 ms
18,668 KB
testcase_25 AC 423 ms
18,844 KB
testcase_26 AC 451 ms
18,856 KB
testcase_27 AC 434 ms
18,860 KB
testcase_28 AC 569 ms
23,808 KB
testcase_29 AC 546 ms
24,320 KB
testcase_30 AC 582 ms
23,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("O3")
#include <bits/stdc++.h>
#define ll long long
#define rep(i,n) for(ll i=0;i<(n);i++)
#define pll pair<ll,ll>
#define pq priority_queue
#define pb push_back
#define eb emplace_back
#define fi first
#define se second
#define ios ios_base::sync_with_stdio(0),cin.tie(0),cout.tie(0);
#define lb(c,x) distance(c.begin(),lower_bound(all(c),x))
#define ub(c,x) distance(c.begin(),upper_bound(all(c),x))

using namespace std;

template<class T> inline bool chmax(T& a,T b){if(a<b){a=b;return 1;}return 0;}
template<class T> inline bool chmin(T& a,T b){if(a>b){a=b;return 1;}return 0;}

const ll INF=1e18;

vector<ll> to[200100];
ll par[200100];
ll dp[200100];

void dfs1(ll v,ll p=-1){
    par[v]=p;
    for(auto x:to[v]){
        if(x==p) continue;
        dfs1(x,v);
    }
    return ;
}

void dfs(ll v,ll p=-1){
    ll res=0;
    for(auto x:to[v]){
        if(x==p) continue;
        dfs(x,v);
        res+=dp[x];
    }
    dp[v]=res+1;
    return;
}

int main(){
    ll n;
    cin >> n;
    rep(i,n-1){
        ll v,w;
        cin >> v >> w;
        v--; w--;
        to[v].push_back(w);
        to[w].push_back(v);
    }
        
    dfs1(0);
    dfs(0);
    rep(i,n){
        //cout << dp[i] << endl;
    }
    rep(i,n){
        ll s=0;
        ll t=0;
        for(auto x:to[i]){
            if(x==par[i]) continue;
            s+=dp[x];
            t+=dp[x]*dp[x];
        }
        ll ans=(s+1)*(s+1)-t;
        cout << ans << endl;
    }
}
0