結果
| 問題 |
No.876 Range Compress Query
|
| コンテスト | |
| ユーザー |
kcvlex
|
| 提出日時 | 2019-09-06 21:47:17 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 365 ms / 2,000 ms |
| コード長 | 7,751 bytes |
| コンパイル時間 | 2,182 ms |
| コンパイル使用メモリ | 192,380 KB |
| 実行使用メモリ | 13,696 KB |
| 最終ジャッジ日時 | 2024-06-24 17:28:44 |
| 合計ジャッジ時間 | 5,836 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 18 |
ソースコード
// #define DEBUGGING
#include <bits/stdc++.h>
using namespace std;
#define endl '\n'
#define ALL(V) (V).begin(), (V).end()
#define ALLR(V) (V).rbegin(), (V).rend()
template <typename T> using V = vector<T>;
template <typename T> using VV = V<V<T>>;
using ll = int64_t;
using ull = uint64_t;
using PLL = pair<ll, ll>;
template <typename T> const T& var_min(const T &t) { return t; }
template <typename T> const T& var_max(const T &t) { return t; }
template <typename T, typename... Tail> const T& var_min(const T &t, const Tail&... tail) { return min(t, var_min(tail...)); }
template <typename T, typename... Tail> const T& var_max(const T &t, const Tail&... tail) { return max(t, var_max(tail...)); }
template <typename T, typename... Tail> void chmin(T &t, const Tail&... tail) { t = var_min(t, tail...); }
template <typename T, typename... Tail> void chmax(T &t, const Tail&... tail) { t = var_max(t, tail...); }
template <typename T> const T& clamp(const T &t, const T &low, const T &high) { return max(low, min(high, t)); }
template <typename T> void chclamp(T &t, const T &low, const T &high) { t = clamp(t, low, high); }
namespace init__ {
struct InitIO {
InitIO() {
cin.tie(nullptr);
ios_base::sync_with_stdio(false);
cout << fixed << setprecision(30);
}
} init_io;
}
#ifdef DEBUGGING
// #include "../debug/debug.cpp"
#include "../../debug/debug.cpp"
#else
#define DEBUG(...) 0
#define DEBUG_SEPARATOR_LINE 0
#endif
template <typename T>
T make_v(T init) { return init; }
template <typename T, typename... Tail>
auto make_v(T init, size_t s, Tail... tail) {
#define rec make_v(init, tail...)
return V<decltype(rec)>(s, rec);
#undef rec
}
template <typename T, typename L>
class LazySegmentTree{
private:
ll N;
T init_node;
L init_lazy;
vector<T> node;
vector<L> lazy;
vector<bool> lazy_flag;
function<T(T, T)> merge_node;
function<T(T, L)> apply_lazy_value;
function<L(L, L)> update_lazy_value;
function<L(ll, ll, L)> create_lazy_value;
function<L(L)> prop_lazy_value;
public:
LazySegmentTree(const vector<T> &v,
const T &init_node,
const L &init_lazy,
const decltype(merge_node) &merge_node,
const decltype(apply_lazy_value) &apply_lazy_value,
const decltype(update_lazy_value) &update_lazy_value,
const decltype(create_lazy_value) &create_lazy_value,
const decltype(prop_lazy_value) &prop_lazy_value = [](L v) { return v; })
: init_node(init_node),
init_lazy(init_lazy),
merge_node(merge_node),
apply_lazy_value(apply_lazy_value),
update_lazy_value(update_lazy_value),
create_lazy_value(create_lazy_value),
prop_lazy_value(prop_lazy_value)
{
ll tmp = 1;
while(tmp < v.size()) tmp *= 2;
N = tmp;
node.resize(2 * N - 1, init_node);
lazy.resize(2 * N - 1, init_lazy);
lazy_flag.resize(2 * N - 1, false);
for(ll i = 0; i < v.size(); i++) {
node[i + N - 1] = v[i];
}
for(ll i = N - 2; 0 <= i; i--) {
node[i] = merge_node(node[i * 2 + 1], node[i * 2 + 2]);
}
}
/*
* node[pos] -> [left, right)
*/
void lazy_eval(ll pos, ll left, ll right) {
if(!lazy_flag[pos]) {
return;
}
node[pos] = apply_lazy_value(node[pos], lazy[pos]);
lazy_flag[pos] = false;
/*
* whether the node is the bottom of tree or not.
*/
if(right - left > 1) {
for(ll idx = 2 * pos + 1; idx <= 2 * pos + 2; idx++) {
lazy[idx] = update_lazy_value(lazy[idx], prop_lazy_value(lazy[pos]));
lazy_flag[idx] = true;
}
}
lazy[pos] = init_lazy;
}
/*
* If you want to call this func from out of class, in many cases you don't have to change the args pos, node_left, node_right.
* Be careful that the range is half-open interval.
* [left, right), [node_left, node_right)
* @param left: lower limit of interval of query
* @param right: upper limit of interval of query
* @param val: the value gave from query
* @param node_left: lower limit of interval of the node points.
* @param node_right: upper limit of interval of the node points.
*/
void update_query(ll left, ll right, L val, ll pos = 0, ll node_left = 0, ll node_right = -1) {
if(node_right < 0) {
node_right = N;
}
/*
* Execute lazy evaluation.
*/
lazy_eval(pos, node_left, node_right);
/*
* If the node is out of inrerval, return.
*/
if(right <= node_left || node_right <= left) {
return;
}
/*
* If the node cover the interval complety, update this->lazy and execute lazy_eval.
* Else recursion.
*/
if(left <= node_left && node_right <= right) {
lazy[pos] = create_lazy_value(node_left, node_right, val);
lazy_flag[pos] = true;
lazy_eval(pos, node_left, node_right);
} else {
/*
* recursion
*/
update_query(left, right, val, 2 * pos + 1, node_left, (node_left + node_right) / 2);
update_query(left, right, val, 2 * pos + 2, (node_left + node_right) / 2, node_right);
node[pos] = merge_node(node[2 * pos + 1], node[2 * pos + 2]);
}
}
T get_query(ll left, ll right, ll pos = 0, ll node_left = 0, ll node_right = -1) {
if(node_right < 0) {
node_right = N;
}
/*
* Evaluate the node[pos]
*/
lazy_eval(pos, node_left, node_right);
if(node_right <= left || right <= node_left) {
return init_node;
}
if(left <= node_left && node_right <= right) {
return node[pos];
}
ll split = (node_left + node_right) / 2;
return merge_node(get_query(left, right, 2 * pos + 1, node_left, split),
get_query(left, right, 2 * pos + 2, split, node_right));
}
};
using TLL = tuple<ll, ll, ll>;
const ll inf = 5e15;
int main() {
ll N, Q;
cin >> N >> Q;
V<TLL> A(N);
for(ll i = 0; i < N; i++) {
ll e;
cin >> e;
A[i] = TLL(e, 0, e);
}
LazySegmentTree<TLL, ll> lst(A, TLL(inf, 0, inf), 0,
[](TLL t, TLL u) {
ll a, b, c, d, e, f;
tie(a, b, c) = t;
tie(d, e, f) = u;
DEBUG(make_tuple(t, u));
return TLL(a, b + e + (c != d && c != inf && d != inf), f);
},
[](TLL t, ll v) {
ll a, b, c;
tie(a, b, c) = t;
DEBUG(make_tuple(t, v));
return TLL(a + v, b, c + v);
},
[](ll a, ll b) { return a + b; },
[](ll l, ll r, ll v) { return v; });
while(Q--) {
ll q, l, r;
cin >> q >> l >> r;
l--;
if(q == 1) {
ll x;
cin >> x;
lst.update_query(l, r, x);
} else {
cout << get<1>(lst.get_query(l, r)) + 1 << endl << flush;
}
}
return 0;
}
kcvlex