結果

問題 No.778 クリスマスツリー
ユーザー hiro71687khiro71687k
提出日時 2023-04-06 04:07:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 205 ms / 2,000 ms
コード長 872 bytes
コンパイル時間 4,452 ms
コンパイル使用メモリ 265,804 KB
実行使用メモリ 43,392 KB
最終ジャッジ日時 2024-10-02 06:14:10
合計ジャッジ時間 7,557 ms
ジャッジサーバーID
(参考情報)
judge2 / 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 1 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 137 ms
43,324 KB
testcase_07 AC 72 ms
16,952 KB
testcase_08 AC 205 ms
29,276 KB
testcase_09 AC 189 ms
18,936 KB
testcase_10 AC 184 ms
18,944 KB
testcase_11 AC 192 ms
18,944 KB
testcase_12 AC 179 ms
18,816 KB
testcase_13 AC 113 ms
18,428 KB
testcase_14 AC 130 ms
43,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll=long long;
using ld=long double;
ld pie=3.141592653589793;
ll inf=144499999999994;
ll mod=1000000007;
ll op(ll a,ll b){
    return a+b;
}
ll e(){
    return 0;
}
ll ans=0;
void dfs(ll now,segtree<ll,op,e>&seg,vector<vector<ll>>&g,vector<ll>&memo){
    memo[now]=1;
    ans+=seg.prod(0,now);
    seg.set(now,1);
    for (ll i = 0; i < g[now].size(); i++)
    {
        if (memo[g[now][i]]==0)
        {
            dfs(g[now][i],seg,g,memo);
        }
    }
    seg.set(now,0);
}
int main(){
    ll n;
    cin >> n;
    vector<ll>a(n);
    vector<vector<ll>>g(n);
    for (ll i = 0; i < n-1; i++)
    {
        cin >> a[i];
        g[a[i]].push_back(i+1);
    }
    vector<ll>memo(n+10,0);
    segtree<ll,op,e>seg(memo);
    dfs(0,seg,g,memo);
    cout << ans << endl;
}
0