結果

問題 No.1098 LCAs
ユーザー kyoprounokyoprouno
提出日時 2020-06-26 23:50:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,411 bytes
コンパイル時間 2,069 ms
コンパイル使用メモリ 180,500 KB
実行使用メモリ 24,260 KB
最終ジャッジ日時 2024-07-05 00:50:31
合計ジャッジ時間 10,109 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
9,288 KB
testcase_01 AC 4 ms
9,664 KB
testcase_02 AC 4 ms
9,796 KB
testcase_03 AC 5 ms
11,008 KB
testcase_04 AC 5 ms
10,180 KB
testcase_05 WA -
testcase_06 AC 5 ms
9,540 KB
testcase_07 AC 5 ms
9,668 KB
testcase_08 AC 5 ms
9,156 KB
testcase_09 AC 5 ms
10,324 KB
testcase_10 WA -
testcase_11 AC 5 ms
9,928 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 587 ms
23,732 KB
testcase_29 AC 564 ms
24,260 KB
testcase_30 AC 581 ms
23,660 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 ans=1;
        for(auto x:to[i]){
            if(x==par[i]) continue;
            ans*=dp[x]+1;
        }
        ans=ans*2-1;
        cout << ans << endl;
    }
}
0