結果
問題 | No.778 クリスマスツリー |
ユーザー | yuliicppy |
提出日時 | 2021-05-26 19:21:34 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 130 ms / 2,000 ms |
コード長 | 3,724 bytes |
コンパイル時間 | 987 ms |
コンパイル使用メモリ | 105,876 KB |
実行使用メモリ | 33,280 KB |
最終ジャッジ日時 | 2024-10-15 14:44:41 |
合計ジャッジ時間 | 3,538 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 1 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 92 ms
33,152 KB |
testcase_07 | AC | 51 ms
24,660 KB |
testcase_08 | AC | 130 ms
28,672 KB |
testcase_09 | AC | 104 ms
24,064 KB |
testcase_10 | AC | 110 ms
24,192 KB |
testcase_11 | AC | 108 ms
24,192 KB |
testcase_12 | AC | 103 ms
24,064 KB |
testcase_13 | AC | 64 ms
23,936 KB |
testcase_14 | AC | 97 ms
33,280 KB |
ソースコード
#include <iostream> #include <string> #include <vector> #include <algorithm> #include <stack> #include <queue> #include <cmath> #include <tuple> #include <cstdio> #include <bitset> #include <sstream> #include <iterator> #include <numeric> #include <map> #include <cstring> #include <set> #include <functional> #include <iomanip> #include <cassert> using namespace std; #define DEBUG_ //!!$BDs=P;~$K%3%a%s%H%"%&%H(B!! #ifdef DEBUG_ #define dump(x) cerr << #x << " = " << (x) << endl; #else #define dump(x) ; #endif #define equals(a,b) (fabs((a)-(b)) < EPS) #define FOR(i,a,b) for(int i=(a);i<(b);++i) #define REP(i,n) FOR(i,0,n) #define SZ(x) ((int)(x).size()) #define pb push_back #define eb emplace_back //#define int long long typedef long long LL; typedef vector<int> VI; typedef vector<LL> VL; typedef vector<VI> VVI; typedef vector<VL> VVL; typedef vector<string> VS; typedef pair<int, int> PII; typedef pair<LL, LL> PLL; template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; } template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; } template <typename T> std::string printVector(const std::vector<T> &data) { std::stringstream ss; std::ostream_iterator<T> out_it(ss, ", "); ss << "["; std::copy(data.begin(), data.end() - 1, out_it); ss << data.back() << "]"; return ss.str(); } template <typename T> void print_array(const T &ary, int size){ REP(i,size){ cout << ary[i] << " "; } cout << endl; } const int mod = 1e9+7; //const int mod = 998244353; const LL LINF = 1001002003004005006ll; const int INF = 1001001001; const double EPS = (1e-10); const long double PI = 3.14159265358979323846264338327950288419716939937510582097494459230781640628620899; int dx[] = {0,0,-1,1}; int dy[] = {-1,1,0,0}; template< typename Monoid > struct SegmentTree { using F = function< Monoid(Monoid, Monoid) >; int sz; vector< Monoid > seg; const F f; const Monoid M1; SegmentTree(int n, const F f, const Monoid &M1) : f(f), M1(M1) { sz = 1; while(sz < n) sz <<= 1; seg.assign(2 * sz, M1); } void set(int k, const Monoid &x) { seg[k + sz] = x; } void build() { for(int k = sz - 1; k > 0; k--) { seg[k] = f(seg[2 * k + 0], seg[2 * k + 1]); } } void update(int k, const Monoid &x) { k += sz; seg[k] = x; while(k >>= 1) { seg[k] = f(seg[2 * k + 0], seg[2 * k + 1]); } } Monoid query(int a, int b) { Monoid L = M1, R = M1; for(a += sz, b += sz; a < b; a >>= 1, b >>= 1) { if(a & 1) L = f(L, seg[a++]); if(b & 1) R = f(seg[--b], R); } return f(L, R); } Monoid operator[](const int &k) const { return seg[k + sz]; } }; VVI g; VI in,out; int timer = 0; void dfs(int v, int p){ in[v] = timer; for(int u : g[v]){ if(u == p) continue; timer++; dfs(u,v); } timer++; out[v] = timer; } signed main(int argc, char const *argv[]) { cin.tie(0); ios::sync_with_stdio(false); cout << setprecision(12); int N; cin >> N; g.resize(N); in.resize(N); out.resize(N); FOR(i,1,N){ int a; cin >> a; g[i].eb(a); g[a].eb(i); } dfs(0,-1); auto f = [](LL a, LL b){return a+b;}; SegmentTree<LL> seg(timer+10, f, 0); LL ans = 0; for(int i = N-1; i >= 0; i--){ ans += seg.query(in[i], out[i]); seg.update(in[i], seg[in[i]]+1); } cout << ans << endl; //REP(i,N){ // cout << in[i] << " " << out[i] << endl; //} }