結果
問題 | No.778 クリスマスツリー |
ユーザー | ciel |
提出日時 | 2019-01-03 02:43:23 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 496 bytes |
コンパイル時間 | 811 ms |
コンパイル使用メモリ | 69,100 KB |
実行使用メモリ | 52,088 KB |
最終ジャッジ日時 | 2024-11-22 11:53:10 |
合計ジャッジ時間 | 5,138 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 2 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | RE | - |
testcase_07 | AC | 29 ms
8,856 KB |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | AC | 47 ms
10,724 KB |
testcase_14 | RE | - |
ソースコード
#pragma GCC optimize("O3") #include <vector> #include <deque> #include <algorithm> #include <cstdio> using namespace std; vector<vector<int> >v; deque<int> a; long long dfs(int cur){ long long r=0; auto it=lower_bound(a.begin(),a.end(),cur); r=distance(a.begin(),it); auto it2=a.insert(it,cur); for(auto &e:v[cur])r+=dfs(e); a.erase(it2); 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)); }