結果

問題 No.1098 LCAs
ユーザー 👑 NachiaNachia
提出日時 2020-10-03 19:13:18
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 196 ms / 2,000 ms
コード長 706 bytes
コンパイル時間 1,530 ms
コンパイル使用メモリ 169,672 KB
実行使用メモリ 32,976 KB
最終ジャッジ日時 2024-07-18 04:49:14
合計ジャッジ時間 5,484 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
8,448 KB
testcase_01 AC 5 ms
8,320 KB
testcase_02 AC 5 ms
8,448 KB
testcase_03 AC 5 ms
8,448 KB
testcase_04 AC 4 ms
8,448 KB
testcase_05 AC 5 ms
8,576 KB
testcase_06 AC 4 ms
8,576 KB
testcase_07 AC 4 ms
8,320 KB
testcase_08 AC 5 ms
8,576 KB
testcase_09 AC 4 ms
8,448 KB
testcase_10 AC 4 ms
8,448 KB
testcase_11 AC 4 ms
8,320 KB
testcase_12 AC 6 ms
8,448 KB
testcase_13 AC 6 ms
8,320 KB
testcase_14 AC 5 ms
8,448 KB
testcase_15 AC 5 ms
8,448 KB
testcase_16 AC 5 ms
8,448 KB
testcase_17 AC 6 ms
8,448 KB
testcase_18 AC 153 ms
18,816 KB
testcase_19 AC 153 ms
18,668 KB
testcase_20 AC 162 ms
18,684 KB
testcase_21 AC 158 ms
18,632 KB
testcase_22 AC 159 ms
18,712 KB
testcase_23 AC 110 ms
18,980 KB
testcase_24 AC 111 ms
19,052 KB
testcase_25 AC 104 ms
19,024 KB
testcase_26 AC 113 ms
18,964 KB
testcase_27 AC 109 ms
19,008 KB
testcase_28 AC 196 ms
31,912 KB
testcase_29 AC 196 ms
32,976 KB
testcase_30 AC 194 ms
31,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using LL = long long;
using ULL = unsigned long long;
#define rep(i,n) for(int i=0; i<(n); i++)

const int xN = 200000;

int N;
vector<int> E[xN];
int P[xN];
LL Z[xN];
LL ans[xN];

void dfs(int p) {
    Z[p] = 1;
    for (int e : E[p]) {
        if (P[p] == e) continue;
        P[e] = p;
        dfs(e);
        Z[p] += Z[e];
        ans[p] -= Z[e] * Z[e];
    }
    ans[p] += Z[p] * Z[p];
}

int main() {
    int N; scanf("%d", &N);
    rep(i, N - 1) {
        int u, v; scanf("%d%d", &u, &v); u--; v--;
        E[u].push_back(v);
        E[v].push_back(u);
    }

    rep(i, N) P[i] = -1;
    dfs(0);

    rep(i, N) printf("%lld\n", ans[i]);

    return 0;
}
0