結果

問題 No.1098 LCAs
ユーザー 👑 NachiaNachia
提出日時 2020-10-03 19:12:11
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 460 ms / 2,000 ms
コード長 689 bytes
コンパイル時間 1,620 ms
コンパイル使用メモリ 170,576 KB
実行使用メモリ 32,896 KB
最終ジャッジ日時 2024-07-18 04:49:00
合計ジャッジ時間 8,884 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
8,320 KB
testcase_01 AC 3 ms
8,192 KB
testcase_02 AC 3 ms
8,320 KB
testcase_03 AC 3 ms
8,320 KB
testcase_04 AC 3 ms
8,064 KB
testcase_05 AC 3 ms
8,192 KB
testcase_06 AC 4 ms
8,192 KB
testcase_07 AC 3 ms
8,192 KB
testcase_08 AC 3 ms
8,320 KB
testcase_09 AC 4 ms
8,064 KB
testcase_10 AC 4 ms
8,192 KB
testcase_11 AC 4 ms
8,192 KB
testcase_12 AC 3 ms
8,064 KB
testcase_13 AC 5 ms
8,192 KB
testcase_14 AC 5 ms
8,320 KB
testcase_15 AC 6 ms
8,192 KB
testcase_16 AC 5 ms
8,320 KB
testcase_17 AC 6 ms
8,320 KB
testcase_18 AC 396 ms
18,500 KB
testcase_19 AC 392 ms
18,544 KB
testcase_20 AC 398 ms
18,484 KB
testcase_21 AC 410 ms
18,504 KB
testcase_22 AC 393 ms
18,540 KB
testcase_23 AC 361 ms
18,728 KB
testcase_24 AC 362 ms
18,784 KB
testcase_25 AC 342 ms
18,784 KB
testcase_26 AC 389 ms
18,784 KB
testcase_27 AC 357 ms
18,792 KB
testcase_28 AC 419 ms
31,680 KB
testcase_29 AC 460 ms
32,896 KB
testcase_30 AC 449 ms
31,540 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; cin >> N;
    rep(i, N - 1) {
        int u, v; cin >> 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) cout << ans[i] << endl;

    return 0;
}
0