結果

問題 No.1098 LCAs
ユーザー ooaiuooaiu
提出日時 2024-11-30 16:09:05
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 188 ms / 2,000 ms
コード長 1,563 bytes
コンパイル時間 3,204 ms
コンパイル使用メモリ 251,616 KB
実行使用メモリ 33,920 KB
最終ジャッジ日時 2024-11-30 16:09:13
合計ジャッジ時間 7,160 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 115 ms
16,572 KB
testcase_19 AC 92 ms
16,640 KB
testcase_20 AC 104 ms
16,768 KB
testcase_21 AC 108 ms
16,640 KB
testcase_22 AC 131 ms
16,660 KB
testcase_23 AC 98 ms
17,260 KB
testcase_24 AC 86 ms
17,268 KB
testcase_25 AC 76 ms
17,208 KB
testcase_26 AC 78 ms
17,332 KB
testcase_27 AC 79 ms
17,332 KB
testcase_28 AC 128 ms
32,384 KB
testcase_29 AC 188 ms
33,920 KB
testcase_30 AC 145 ms
32,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#ifndef LOCAL
#include <bits/stdc++.h>

using namespace std;

#define debug(...) (void(0))
#else
#include "algo/debug.h"
#endif

namespace std {

template <class Fun>
class y_combinator_result {
    Fun fun_;

   public:
    template <class T>
    explicit y_combinator_result(T &&fun) : fun_(std::forward<T>(fun)) {}

    template <class... Args>
    decltype(auto) operator()(Args &&...args) {
        return fun_(std::ref(*this), std::forward<Args>(args)...);
    }
};

template <class Fun>
decltype(auto) y_combinator(Fun &&fun) {
    return y_combinator_result<std::decay_t<Fun>>(std::forward<Fun>(fun));
}

}  // namespace std

void solve() {
    int N; cin >> N;
    vector<vector<int>> G(N);
    for(int i = 1; i < N; i++) {
        int a, b; cin >> a >> b;
        a--; b--;
        G[a].push_back(b);
        G[b].push_back(a);
    }
    vector<int64_t> ans(N);
    vector<int> sz(N);
    y_combinator([&](auto self, int v, int p = -1) -> void {
        sz[v] = 1;
        for(const auto&to: G[v]) if(to != p) {
            self(to, v);
            sz[v] += sz[to];
            ans[v] += sz[to];
        }
        int64_t sum = sz[v] - 1;
        for(const auto&to: G[v]) if(to != p) {
            sum -= sz[to];
            ans[v] += sz[to] * sum;
        }
    })(0);
    debug(ans);
    for(int i = 0; i < N; i++) {
        ans[i] *= 2, ans[i] += 1;
        cout << ans[i] << '\n';
    }
}

int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    int tt = 1;
    // std::cin >> tt;
    while(tt--) {
        solve();
    }
}
0