結果
問題 |
No.778 クリスマスツリー
|
ユーザー |
![]() |
提出日時 | 2020-03-30 23:34:35 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 673 ms / 2,000 ms |
コード長 | 906 bytes |
コンパイル時間 | 2,729 ms |
コンパイル使用メモリ | 199,916 KB |
最終ジャッジ日時 | 2025-01-09 11:11:50 |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 12 |
ソースコード
#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 k=std::sqrt(n); std::vector<lint>a(n),table((n+k-1)/k); auto add=[&](lint i,lint x){ a.at(i)+=x; table.at(i/k)+=x; }; auto query=[&](lint r){ lint ans=0; while(r%k)ans+=a.at(--r); for(r/=k;r;)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'; }