結果

問題 No.1098 LCAs
ユーザー otamay6otamay6
提出日時 2020-06-26 23:02:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 344 ms / 2,000 ms
コード長 912 bytes
コンパイル時間 1,668 ms
コンパイル使用メモリ 174,456 KB
実行使用メモリ 49,920 KB
最終ジャッジ日時 2024-07-04 23:25:06
合計ジャッジ時間 7,054 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 282 ms
23,808 KB
testcase_19 AC 284 ms
23,912 KB
testcase_20 AC 278 ms
23,800 KB
testcase_21 AC 279 ms
23,808 KB
testcase_22 AC 285 ms
23,808 KB
testcase_23 AC 184 ms
22,812 KB
testcase_24 AC 188 ms
22,768 KB
testcase_25 AC 164 ms
22,712 KB
testcase_26 AC 192 ms
22,776 KB
testcase_27 AC 188 ms
22,788 KB
testcase_28 AC 344 ms
48,000 KB
testcase_29 AC 341 ms
49,920 KB
testcase_30 AC 341 ms
47,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define REP(i,n) for(int i=0,i##_len=int(n);i<i##_len;++i)
#define rep(i,a,b) for(int i=int(a);i<int(b);++i)
#define All(x) (x).begin(),(x).end()
#define rAll(x) (x).rbegin(),(x).rend()
using namespace std;
using ll = long long;

int main(){
    int N;
    cin>>N;
    vector<vector<int>> graph(N);
    REP(i,N-1){
        int a,b; cin>>a>>b;
        a--;b--;
        graph[a].push_back(b);
        graph[b].push_back(a);
    }
    vector<ll> ch(N);
    vector<vector<int>> chs(N);
    function<ll(int,int)> dfs = [&](int u,int pre){
        ll res = 1;
        for(auto v:graph[u]){
            if(v == pre) continue;
            res += dfs(v,u);
            chs[u].push_back(v);
        }
        return ch[u] = res;
    };
    dfs(0,-1);
    REP(i,N){
        ll ans = ch[i]*ch[i];
        for(auto v:chs[i]){
            ans -= ch[v]*ch[v];
        }
        cout<<ans<<"\n";
    }
}
0