結果
問題 |
No.876 Range Compress Query
|
ユーザー |
![]() |
提出日時 | 2019-09-08 19:55:39 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,193 bytes |
コンパイル時間 | 1,094 ms |
コンパイル使用メモリ | 114,948 KB |
実行使用メモリ | 9,616 KB |
最終ジャッジ日時 | 2024-06-27 15:07:37 |
合計ジャッジ時間 | 2,765 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 13 WA * 5 |
ソースコード
#include <functional> #include <algorithm> #include <iostream> #include <iomanip> #include <cstring> #include <string> #include <vector> #include <random> #include <bitset> #include <queue> #include <cmath> #include <stack> #include <set> #include <map> typedef long long ll; using namespace std; const ll MOD = 1000000007LL; template <typename T> class SegmentTree { using F = function<T(T, T)>; int n; F f; T t; vector <T> dat; public: SegmentTree() {}; SegmentTree(F f, T t) : f(f), t(t) {} void init(int n_) { n = 1; while (n < n_) n <<= 1; dat.assign(n << 1, t); } void build(const vector <T> &v) { auto n_ = (int)v.size(); init(n_); for (int i = 0; i < n_; i++) dat[n + i] = v[i]; for (int i = n - 1; i > 0; i--) dat[i] = f(dat[(i << 1) | 0], dat[(i << 1) | 1]); } void set_val(int k, T x) { dat[k += n] = x; while (k >>= 1) dat[k] = f(dat[(k << 1) | 0], dat[(k << 1) | 1]); } T query(int a, int b) { T vl = t, vr = t; for (int l = a + n, r = b + n; l < r; l >>= 1, r >>= 1) { if (l & 1) vl = f(vl, dat[l++]); if (r & 1) vr = f(dat[--r], vr); } return f(vl, vr); } }; typedef pair <ll, int> P; int main() { cin.sync_with_stdio(false); cin.tie(0); cout.tie(0); int n, q; cin >> n >> q; vector<ll> a(n); vector <P> b(n); for (int i = 0; i < n; i++) { cin >> a[i]; if (i) { b[i].first = a[i] - a[i - 1]; b[i].second = b[i].first == 0; } } auto f = [](P a, P b) { return P(a.first, a.second + b.second); }; SegmentTree<P> seg(f, P(-1, 0)); seg.build(b); while (q--) { ll c, l, r, x; cin >> c >> l >> r; if (c == 1) { cin >> x; ll lv = seg.query(l - 1, l).first; ll rv = seg.query(r - 1, r).first; seg.set_val(l - 1, P(lv + x, lv + x == 0)); seg.set_val(r, P(rv - x, rv - x == 0)); } else { cout << r - l + 1 - seg.query(l - 1, r).second << '\n'; } } return 0; }