結果
問題 | No.789 範囲の合計 |
ユーザー | toma |
提出日時 | 2019-09-25 00:51:07 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 290 ms / 1,000 ms |
コード長 | 1,869 bytes |
コンパイル時間 | 1,738 ms |
コンパイル使用メモリ | 186,808 KB |
実行使用メモリ | 30,968 KB |
最終ジャッジ日時 | 2024-09-19 14:55:24 |
合計ジャッジ時間 | 5,416 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 263 ms
28,840 KB |
testcase_03 | AC | 76 ms
8,704 KB |
testcase_04 | AC | 241 ms
28,072 KB |
testcase_05 | AC | 208 ms
29,304 KB |
testcase_06 | AC | 220 ms
28,940 KB |
testcase_07 | AC | 67 ms
8,704 KB |
testcase_08 | AC | 156 ms
18,048 KB |
testcase_09 | AC | 145 ms
16,384 KB |
testcase_10 | AC | 290 ms
30,968 KB |
testcase_11 | AC | 221 ms
28,264 KB |
testcase_12 | AC | 225 ms
28,328 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 0 ms
6,940 KB |
ソースコード
#include"bits/stdc++.h" using namespace std; #define REP(k,m,n) for(int (k)=(m);(k)<(n);(k)++) #define rep(i,n) REP((i),0,(n)) using ll = long long; template<typename T> class SegmentTree { private: using F = function<T(T, T)>; // モノイド型 int n; // 横幅 F f; // モノイド T e; // モノイド単位元 vector<T> data; public: // init忘れに注意 SegmentTree() {} SegmentTree(F f, T e) :f(f), e(e) {} void init(int n_) { n = 1; while (n < n_)n <<= 1; data.assign(n << 1, e); } void build(const vector<T>& v) { int n_ = v.size(); init(n_); rep(i, n_)data[n + i] = v[i]; for (int i = n - 1; i >= 0; i--) { data[i] = f(data[(i << 1) | 0], data[(i << 1) | 1]); } } void set_val(int idx, T val) { idx += n; data[idx] = val; while (idx >>= 1) { data[idx] = f(data[(idx << 1) | 0], data[(idx << 1) | 1]); } } T query(int a, int b) { // [a,b) T vl = e, vr = e; for (int l = a + n, r = b + n; l < r; l >>= 1, r >>= 1) { if (l & 1)vl = f(vl, data[l++]); // unknown if (r & 1)vr = f(data[--r], vr); // unknown } return f(vl, vr); } }; int main() { // input ll n; cin >> n; vector<vector<ll>> querys(n, vector<ll>(3)); rep(i, n)rep(j, 3)cin >> querys[i][j]; // compression int cnt = 0; set<ll> st; map<ll, ll> trans; for (const auto& query : querys) { st.insert(query[1]); if (query[0] == 1)st.insert(query[2]); } for (const auto& num : st)trans[num] = cnt++; // segment init auto f = [](ll a, ll b) {return a + b; }; SegmentTree<ll> seg(f, 0); seg.init(cnt); // query ll ans = 0; for (const auto& query : querys) { ll x = query[1], y = query[2]; if (query[0] == 0) { x = trans[x]; ll now = seg.query(x, x + 1); seg.set_val(x, now + y); } else { ll l = trans[x], r = trans[y]; ans += seg.query(l, r + 1); } } cout << ans << endl; return 0; }