結果
問題 | No.778 クリスマスツリー |
ユーザー | t33f |
提出日時 | 2018-12-25 22:13:34 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 112 ms / 2,000 ms |
コード長 | 599 bytes |
コンパイル時間 | 672 ms |
コンパイル使用メモリ | 75,284 KB |
実行使用メモリ | 27,712 KB |
最終ジャッジ日時 | 2024-10-14 01:53:23 |
合計ジャッジ時間 | 2,207 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
8,056 KB |
testcase_01 | AC | 3 ms
8,388 KB |
testcase_02 | AC | 3 ms
8,124 KB |
testcase_03 | AC | 3 ms
8,204 KB |
testcase_04 | AC | 4 ms
8,096 KB |
testcase_05 | AC | 4 ms
8,052 KB |
testcase_06 | AC | 94 ms
27,712 KB |
testcase_07 | AC | 40 ms
9,648 KB |
testcase_08 | AC | 112 ms
18,364 KB |
testcase_09 | AC | 110 ms
12,224 KB |
testcase_10 | AC | 103 ms
12,176 KB |
testcase_11 | AC | 104 ms
12,064 KB |
testcase_12 | AC | 102 ms
12,204 KB |
testcase_13 | AC | 80 ms
12,036 KB |
testcase_14 | AC | 95 ms
27,692 KB |
ソースコード
#include <set> #include <vector> #include <algorithm> #include <iostream> using namespace std; int n; vector<int> children[200100]; int bit[200100]; long long dfs(int i) { long long sum = 0; for (int x = i+1; x <= n+1; x += x&-x) bit[x]++; for (int j : children[i]) { for (int x = j+1; x > 0; x -= x&-x) sum += bit[x]; sum += dfs(j); } for (int x = i+1; x <= n+1; x += x&-x) bit[x]--; return sum; } int main () { cin >> n; for (int i = 1; i < n; i++) { int p; cin >> p; children[p].push_back(i); } cout << dfs(0) << endl; }