結果
問題 | No.789 範囲の合計 |
ユーザー | pianoneko |
提出日時 | 2019-03-19 12:20:59 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 180 ms / 1,000 ms |
コード長 | 2,564 bytes |
コンパイル時間 | 2,210 ms |
コンパイル使用メモリ | 182,040 KB |
実行使用メモリ | 9,272 KB |
最終ジャッジ日時 | 2024-09-13 19:55:20 |
合計ジャッジ時間 | 5,258 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 167 ms
9,216 KB |
testcase_03 | AC | 92 ms
6,940 KB |
testcase_04 | AC | 162 ms
9,200 KB |
testcase_05 | AC | 146 ms
9,208 KB |
testcase_06 | AC | 151 ms
9,040 KB |
testcase_07 | AC | 77 ms
6,944 KB |
testcase_08 | AC | 124 ms
7,136 KB |
testcase_09 | AC | 121 ms
6,940 KB |
testcase_10 | AC | 180 ms
9,272 KB |
testcase_11 | AC | 151 ms
9,172 KB |
testcase_12 | AC | 152 ms
9,136 KB |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> #define REP(i, n) for (int i = 0; i < n; i++) #define ALL(obj) obj.begin(), obj.end() const int iINF = 1e9; const long long llINF = 1e18; const int MOD = 1e9 + 7; using namespace std; template <typename Monoid> struct SegmentTree { using F = function<Monoid(Monoid, Monoid)>; int size = 1; vector<Monoid> node; const F f; const Monoid e; SegmentTree(int n, const F f, const Monoid &e) : f(f), e(e) { while (size < n) size <<= 1; node.assign(2 * size, e); for (int i = size - 2; i >= 0; i--) { node[i] = f(node[2 * i + 1], node[2 * i + 2]); } } SegmentTree(vector<Monoid> vec, const F f, const Monoid &e) : f(f), e(e) { int n = (int)vec.size(); while (size < n) size <<= 1; node.assign(2 * size, e); for (int i = 0; i < n; i++) { node[i + size - 1] = vec[i]; } for (int i = n - 2; i >= 0; i--) { node[i] = f(node[2 * i + 1], node[2 * i + 2]); } } void set(int i, const Monoid &x) { node[i + size - 1] = x; } void update(int i, const Monoid &x) { i += (size - 1); node[i] = x; while (i > 0) { i = (i - 1) / 2; node[i] = f(node[2 * i + 1], node[2 * i + 2]); } } Monoid query(int a, int b, int i = 0, int l = 0, int r = -1) { if (r < 0) r = size; if (r <= a || b <= l) return e; if (a <= l && r <= b) return node[i]; Monoid xl = query(a, b, 2 * i + 1, l, (l + r) / 2); Monoid xr = query(a, b, 2 * i + 2, (r + l) / 2, r); return f(xl, xr); } }; int main() { int N; cin >> N; vector<int> query(N), x(N), y(N), num; REP(i, N) { cin >> query[i] >> x[i] >> y[i]; if (query[i] == 0) { num.push_back(x[i]); } else { num.push_back(x[i]); num.push_back(y[i]); } } sort(ALL(num)); num.erase(unique(ALL(num)), num.end()); long long ans = 0; SegmentTree<long long> seg( num.size(), [](long long a, long long b) { return a + b; }, 0); REP(i, N) { if (query[i] == 0) { int index = lower_bound(ALL(num), x[i]) - num.begin(); seg.update(index, y[i] + seg.query(index, index + 1)); } else { int l = lower_bound(ALL(num), x[i]) - num.begin(); int r = lower_bound(ALL(num), y[i]) - num.begin(); ans += seg.query(l, r + 1); } } cout << ans << endl; }