結果

問題 No.1098 LCAs
ユーザー totori_nyaatotori_nyaa
提出日時 2020-06-26 21:29:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 177 ms / 2,000 ms
コード長 1,145 bytes
コンパイル時間 2,016 ms
コンパイル使用メモリ 203,788 KB
実行使用メモリ 30,336 KB
最終ジャッジ日時 2024-07-04 19:43:01
合計ジャッジ時間 5,885 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
7,808 KB
testcase_01 AC 5 ms
7,808 KB
testcase_02 AC 5 ms
7,936 KB
testcase_03 AC 5 ms
7,936 KB
testcase_04 AC 5 ms
7,936 KB
testcase_05 AC 5 ms
7,936 KB
testcase_06 AC 5 ms
7,808 KB
testcase_07 AC 4 ms
7,808 KB
testcase_08 AC 5 ms
7,808 KB
testcase_09 AC 5 ms
7,936 KB
testcase_10 AC 5 ms
7,936 KB
testcase_11 AC 5 ms
7,936 KB
testcase_12 AC 5 ms
7,936 KB
testcase_13 AC 5 ms
7,936 KB
testcase_14 AC 6 ms
7,936 KB
testcase_15 AC 5 ms
7,808 KB
testcase_16 AC 4 ms
7,936 KB
testcase_17 AC 5 ms
7,936 KB
testcase_18 AC 131 ms
16,000 KB
testcase_19 AC 131 ms
15,872 KB
testcase_20 AC 123 ms
16,000 KB
testcase_21 AC 135 ms
15,872 KB
testcase_22 AC 136 ms
16,000 KB
testcase_23 AC 92 ms
16,500 KB
testcase_24 AC 86 ms
16,504 KB
testcase_25 AC 88 ms
16,700 KB
testcase_26 AC 97 ms
16,576 KB
testcase_27 AC 89 ms
16,572 KB
testcase_28 AC 174 ms
29,056 KB
testcase_29 AC 165 ms
30,336 KB
testcase_30 AC 177 ms
28,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h> 
using namespace std;
typedef long long ll;
template<typename T1,typename T2> bool chmin(T1 &a,T2 b){if(a<=b)return 0; a=b; return 1;}
template<typename T1,typename T2> bool chmax(T1 &a,T2 b){if(a>=b)return 0; a=b; return 1;}
int dx[4]={0,1,-1,0};
int dy[4]={1,0,0,-1};
long double eps = 1e-6;
long double pi = acos(-1);

vector<vector<int>> v(200020);
ll ans[200020];

ll dfs(int p,int pre){
    ll ret = 1;
    for(auto i:v[p]){
        if(i != pre){
            ll cnt = dfs(i,p);
            ret += cnt;
        }
    }
    ans[p] = ret*(ret);
    return ret;
}
ll dfs2(int p,int pre){
    ll ret = ans[p];
    ll cnt = 0;
    for(auto i:v[p]){
        if(i!=pre){
            cnt = dfs2(i,p);
            ans[p] -= cnt;
        }
    }
    return ret;
}
signed main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << fixed << setprecision(20);

    int n;
    cin>>n;
    for(int i=1;i<n;i++){
        int a,b;
        cin>>a>>b;
        a--,b--;
        v[a].push_back(b);
        v[b].push_back(a);
    }
    dfs(0,-1);
    dfs2(0,-1);
    for(int i=0;i<n;i++){
        cout << ans[i] << "\n";
    }
}
0