結果
問題 | No.778 クリスマスツリー |
ユーザー | commy |
提出日時 | 2020-04-10 00:55:15 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 175 ms / 2,000 ms |
コード長 | 2,916 bytes |
コンパイル時間 | 1,020 ms |
コンパイル使用メモリ | 99,376 KB |
実行使用メモリ | 58,892 KB |
最終ジャッジ日時 | 2024-09-14 03:48:25 |
合計ジャッジ時間 | 3,392 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 133 ms
58,856 KB |
testcase_07 | AC | 73 ms
12,740 KB |
testcase_08 | AC | 175 ms
35,480 KB |
testcase_09 | AC | 139 ms
15,204 KB |
testcase_10 | AC | 140 ms
15,184 KB |
testcase_11 | AC | 149 ms
15,316 KB |
testcase_12 | AC | 143 ms
15,184 KB |
testcase_13 | AC | 92 ms
14,980 KB |
testcase_14 | AC | 132 ms
58,892 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <string> #include <numeric> #include <utility> #include <tuple> #define REP(i, a, b) for (int i = int(a); i < int(b); i++) using namespace std; using ll = long long int; using P = pair<int, int>; // clang-format off #ifdef _DEBUG_ #define dump(...) do{ cerr << __LINE__ << ":\t" << #__VA_ARGS__ << " = "; PPPPP(__VA_ARGS__); cerr << endl; } while(false) template<typename T> void PPPPP(T t) { cerr << t; } template<typename T, typename... S> void PPPPP(T t, S... s) { cerr << t << ", "; PPPPP(s...); } #else #define dump(...) do{ } while(false) #endif template<typename T> vector<T> make_v(size_t a, T b) { return vector<T>(a, b); } template<typename... Ts> auto make_v(size_t a, Ts... ts) { return vector<decltype(make_v(ts...))>(a, make_v(ts...)); } template<typename T> bool chmin(T &a, T b) { if (a > b) {a = b; return true; } return false; } template<typename T> bool chmax(T &a, T b) { if (a < b) {a = b; return true; } return false; } template<typename T> void print(T a) { cout << a << endl; } template<typename T, typename... Ts> void print(T a, Ts... ts) { cout << a << ' '; print(ts...); } template<typename T> istream &operator,(istream &in, T &t) { return in >> t; } // clang-format on #include <functional> template<typename T> class SegmentTreeOneAll { using Func = function<T(T, T)>; public: vector<T> data; int n; T init; Func update_func; Func query_func; SegmentTreeOneAll(int _n, T _init, Func up, Func qu) { init = _init; update_func = up; query_func = qu; for (n = 1; n < _n; n *= 2) ; data.resize(2 * n - 1, init); } void update(int pos, T val) { pos += n - 1; data[pos] = update_func(data[pos], val); while (pos > 0) { pos = (pos - 1) / 2; data[pos] = query_func(data[2 * pos + 1], data[2 * pos + 2]); } } T query(int l, int r) { T resL = init, resR = init; for (l += n - 1, r += n - 1; l < r; l = l / 2, r = (r - 1) / 2) { if (!(l & 1)) { resL = query_func(resL, data[l]); } if (!(r & 1)) { resR = query_func(data[r - 1], resR); } } return query_func(resL, resR); } }; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); int n; cin, n; vector<vector<int>> T(n); REP(i, 1, n) { int a; cin, a; T[a].push_back(i); } auto SUM = [](ll a, ll b) { return a + b; }; SegmentTreeOneAll<ll> seg(n, 0, SUM, SUM); function<ll(int)> dfs = [&](int v) { ll res = seg.query(0, v); seg.update(v, 1); for (auto vv : T[v]) { res += dfs(vv); } seg.update(v, -1); return res; }; cout << dfs(0) << endl; return 0; }