結果

問題 No.778 クリスマスツリー
ユーザー t98slidert98slider
提出日時 2023-07-12 23:52:00
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 541 bytes
コンパイル時間 3,923 ms
コンパイル使用メモリ 231,200 KB
実行使用メモリ 30,592 KB
最終ジャッジ日時 2024-09-14 12:36:30
合計ジャッジ時間 5,699 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 62 ms
30,592 KB
testcase_07 AC 27 ms
9,924 KB
testcase_08 AC 108 ms
19,712 KB
testcase_09 AC 90 ms
11,904 KB
testcase_10 AC 86 ms
11,904 KB
testcase_11 AC 85 ms
11,904 KB
testcase_12 AC 88 ms
11,904 KB
testcase_13 AC 43 ms
11,776 KB
testcase_14 AC 62 ms
30,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int N;
    cin >> N;
    vector<vector<int>> G(N);
    atcoder::fenwick_tree<int> fw(N);
    for(int i = 1; i < N; i++){
        int p;
        cin >> p;
        G[p].emplace_back(i);
    }
    long ans = 0;
    function<void(int)> dfs = [&](int v){
        ans += fw.sum(0, v);
        fw.add(v, 1);
        for(auto &&u : G[v]) dfs(u);
        fw.add(v, -1);
    };
    dfs(0);
    cout << ans << '\n';
}
0