結果

問題 No.1098 LCAs
ユーザー merom686merom686
提出日時 2020-06-27 01:16:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 1,173 bytes
コンパイル時間 822 ms
コンパイル使用メモリ 91,368 KB
実行使用メモリ 16,748 KB
最終ジャッジ日時 2024-07-05 04:44:42
合計ジャッジ時間 3,596 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 75 ms
9,544 KB
testcase_19 AC 72 ms
9,400 KB
testcase_20 AC 74 ms
9,504 KB
testcase_21 AC 73 ms
9,368 KB
testcase_22 AC 71 ms
9,408 KB
testcase_23 AC 55 ms
9,424 KB
testcase_24 AC 54 ms
9,488 KB
testcase_25 AC 54 ms
9,472 KB
testcase_26 AC 61 ms
9,324 KB
testcase_27 AC 60 ms
9,520 KB
testcase_28 AC 101 ms
16,308 KB
testcase_29 AC 96 ms
16,748 KB
testcase_30 AC 93 ms
16,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <cstdio>
#include <cstring>
#include <cmath>
using namespace std;
using ll = long long;

struct Graph {
    struct Vertex { int n; ll r; };
    struct Edge { int i, n; };
    Graph(int n, int m) : v(n, { -1, -1 }), e(m), n(n), m(0) {}
    void add_edge(int i, int j) {
        e[m] = { j, v[i].n };
        v[i].n = m;
        m++;
    }
    ll dfs(int i, int p) {
        ll r = 0, k = 1;
        for (int j = v[i].n; j >= 0; j = e[j].n) {
            Edge& o = e[j];
            if (o.i == p) continue;
            ll l = dfs(o.i, i);
            k += l;
            r += l * l;
        }
        v[i].r = k * k - r;
        return k;
    }
    vector<Vertex> v;
    vector<Edge> e;
    int n, m;
};

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);

    int n;
    cin >> n;

    Graph g(n, (n - 1) * 2);
    for (int i = 0; i < n - 1; i++) {
        int a, b;
        cin >> a >> b;
        a--; b--;

        g.add_edge(a, b);
        g.add_edge(b, a);
    }

    g.dfs(0, -1);

    for (int i = 0; i < n; i++) {
        cout << g.v[i].r << '\n';
    }

    return 0;
}
0