結果

問題 No.778 クリスマスツリー
ユーザー ooaiuooaiu
提出日時 2024-11-30 13:33:31
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 198 ms / 2,000 ms
コード長 1,389 bytes
コンパイル時間 3,409 ms
コンパイル使用メモリ 253,516 KB
実行使用メモリ 40,088 KB
最終ジャッジ日時 2024-11-30 13:33:37
合計ジャッジ時間 5,325 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 94 ms
40,084 KB
testcase_07 AC 64 ms
20,664 KB
testcase_08 AC 198 ms
29,216 KB
testcase_09 AC 154 ms
19,968 KB
testcase_10 AC 165 ms
19,968 KB
testcase_11 AC 167 ms
20,096 KB
testcase_12 AC 147 ms
19,968 KB
testcase_13 AC 81 ms
19,712 KB
testcase_14 AC 93 ms
40,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using namespace std;

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

#include <atcoder/segtree>
using S = int64_t;
S op(S a, S b) { return a + b; }
S e() { return 0; }
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; cin >> a;
        G[a].push_back(i);
        G[i].push_back(a);
    }
    atcoder::segtree<S, op, e> seg(N);
    S ans = 0;
    y_combinator([&](auto self, int v, int p = -1) -> void {
        seg.set(v, 1);
        for(const auto&to: G[v]) if(to != p) {
            self(to, v);
        }
        ans += seg.prod(0, v);
        seg.set(v, 0);
    })(0);
    cout << ans << endl;
}

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