結果
問題 | No.778 クリスマスツリー |
ユーザー | ciel |
提出日時 | 2019-01-04 02:25:40 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 230 ms / 2,000 ms |
コード長 | 680 bytes |
コンパイル時間 | 2,640 ms |
コンパイル使用メモリ | 143,000 KB |
実行使用メモリ | 35,628 KB |
最終ジャッジ日時 | 2024-10-14 01:58:20 |
合計ジャッジ時間 | 3,222 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 1 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 191 ms
35,628 KB |
testcase_07 | AC | 32 ms
8,604 KB |
testcase_08 | AC | 230 ms
21,640 KB |
testcase_09 | AC | 84 ms
10,800 KB |
testcase_10 | AC | 82 ms
10,724 KB |
testcase_11 | AC | 86 ms
10,720 KB |
testcase_12 | AC | 73 ms
10,880 KB |
testcase_13 | AC | 53 ms
10,648 KB |
testcase_14 | AC | 193 ms
35,628 KB |
ソースコード
#include <ext/pb_ds/assoc_container.hpp> #include <ext/pb_ds/tree_policy.hpp> #include <ext/pb_ds/tag_and_trait.hpp> template<typename K> using tree = __gnu_pbds::tree<K,__gnu_pbds::null_type,std::less<K>,__gnu_pbds::rb_tree_tag,__gnu_pbds::tree_order_statistics_node_update>; #include <vector> #include <algorithm> #include <cstdio> using namespace std; vector<vector<int> >v; tree<int>a; long long dfs(int cur){ int k=a.order_of_key(cur); long long r=k; a.insert(cur); for(auto &e:v[cur])r+=dfs(e); a.erase(a.find(cur)); return r; } int main(){ int N,x; scanf("%d",&N); v.resize(N); for(int i=1;i<N;i++)scanf("%d",&x),v[x].push_back(i); printf("%lld\n",dfs(0)); }