結果
問題 | No.778 クリスマスツリー |
ユーザー | ngtkana |
提出日時 | 2020-03-30 23:23:57 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 151 ms / 2,000 ms |
コード長 | 953 bytes |
コンパイル時間 | 2,094 ms |
コンパイル使用メモリ | 205,812 KB |
実行使用メモリ | 27,616 KB |
最終ジャッジ日時 | 2024-06-23 06:47:02 |
合計ジャッジ時間 | 4,533 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 75 ms
27,596 KB |
testcase_07 | AC | 51 ms
13,680 KB |
testcase_08 | AC | 151 ms
19,840 KB |
testcase_09 | AC | 136 ms
15,704 KB |
testcase_10 | AC | 136 ms
15,824 KB |
testcase_11 | AC | 126 ms
15,764 KB |
testcase_12 | AC | 126 ms
15,740 KB |
testcase_13 | AC | 64 ms
15,100 KB |
testcase_14 | AC | 76 ms
27,616 KB |
ソースコード
#include<bits/stdc++.h> using lint=long long; using real=long double; int main(){ std::cin.tie(nullptr);std::ios_base::sync_with_stdio(false); std::cout.setf(std::ios_base::fixed);std::cout.precision(15); lint n;std::cin>>n; std::vector<std::vector<lint>>g(n); for(lint i=1;i<n;i++){ lint p;std::cin>>p; g.at(p).push_back(i); } lint N=1ll<<std::numeric_limits<lint>::digits-__builtin_clzll(n)+1; std::vector<lint>table(2*N); auto add=[&](lint i,lint x){ i+=N; table.at(i)+=x; for(i/=2;i;i/=2)table.at(i)=table.at(2*i)+table.at(2*i+1); }; auto query=[&](lint r){ lint ans=0; for(r+=N;r;r>>=1)if(r&1)ans+=table.at(--r); return ans; }; lint ans=0; auto dfs=[&](auto&&dfs,lint x)->void{ add(x,1); ans+=query(x); for(lint y:g.at(x))dfs(dfs,y); add(x,-1); }; dfs(dfs,0); std::cout<<ans<<'\n'; }