Description
给定序列 a=(a1,a2,⋯ ,an)a=(a_1,a_2,\cdots,a_n)a=(a1,a2,⋯,an),还有一个序列 hhh,初始时 h=ah=ah=a,有 mmm 个操作分四种:
- qmax(l,r)\operatorname{qmax}(l,r)qmax(l,r):求 maxi=lrai\max\limits_{i=l}^r a_ii=lmaxrai.
- qhmax(l,r)\operatorname{qhmax}(l,r)qhmax(l,r):求 maxi=lrhi\max\limits_{i=l}^r h_ii=lmaxrhi.
- add(l,r,k)\operatorname{add}(l,r,k)add(l,r,k):对每个 i∈[l,r]i\in[l,r]i∈[l,r] 执行 ai←ai+ka_i\gets a_i+kai←ai+k.
- assign(l,r,k)\operatorname{assign}(l,r,k)assign(l,r,k):对每个 i∈[l,r]i\in[l,r]i∈[l,r] 执行 ai←ka_i\gets kai←k.
每次修改后,对每个 i∈[1,n]i\in[1,n]i∈[1,n] 执行 hi←max(hi,ai)h_i\gets \max(h_i,a_i)hi←max(hi,ai).
Limitations
1≤n,m≤1051\le n,m\le 10^51≤n,m≤105
1≤l≤r≤n1\le l \le r \le n1≤l≤r≤n
−231≤k<231-2^{31}\le k < 2^{31}−231≤k<231
1s,128MB1\text{s},128\text{MB}1s,128MB
Solution
线段树解法.
显然一个区间被 assign\operatorname{assign}assign 后,所有 add\operatorname{add}add 操作都可转化为 assign\operatorname{assign}assign 操作.
所以我们要维护:
- max\textit{max}max:区间 aia_iai 最大值.
- hmax\textit{hmax}hmax:区间 hih_ihi 最大值.
- add\textit{add}add:区间 aia_iai 的 add\operatorname{add}add 标记.
- cov\textit{cov}cov:区间 aia_iai 的 assign\operatorname{assign}assign 标记.
- used\textit{used}used:区间是否被 assign\operatorname{assign}assign 过.
但由于要求历史最值,所以还需要维护 add,cov\textit{add},\textit{cov}add,cov 的历史最大值 hadd,hcov\textit{hadd},\textit{hcov}hadd,hcov,用这两个标记更新 hmax\textit{hmax}hmax,以保证正确性.
接下来打个模板就可以了,时间复杂度 O(mlogn)O(m\log n)O(mlogn).
Code
4.75KB,1.26s,7.73MB (in total, C++20 with O2)4.75\text{KB},1.26\text{s},7.73\text{MB}\;\texttt{(in total, C++20 with O2)}4.75KB,1.26s,7.73MB(in total, C++20 with O2)
// Problem: P4314 CPU 监控
// Contest: Luogu
// URL: https://www.luogu.com.cn/problem/P4314
// Memory Limit: 128 MB
// Time Limit: 1000 ms
//
// Powered by CP Editor (https://cpeditor.org)
#include <bits/stdc++.h>
using namespace std;
using i64 = long long;
using ui64 = unsigned long long;
using i128 = __int128;
using ui128 = unsigned __int128;
using f4 = float;
using f8 = double;
using f16 = long double;
template<class T>
bool chmax(T &a, const T &b){
if(a < b){ a = b; return true; }
return false;
}
template<class T>
bool chmin(T &a, const T &b){
if(a > b){ a = b; return true; }
return false;
}
constexpr int inf = 2.1e9;
namespace seg_tree {
struct Node {
int l, r;
int max, hismax;
int add, hisadd, cov, hiscov;
bool used;
};
inline int ls(int u) { return 2 * u + 1; }
inline int rs(int u) { return 2 * u + 2; }
struct SegTree {
vector<Node> tr;
inline SegTree() {}
inline SegTree(const vector<int>& a) {
const int n = a.size();
tr.resize(n << 1);
build(0, 0, n - 1, a);
}
inline void pushup(int u, int mid) {
tr[u].max = max(tr[ls(mid)].max, tr[rs(mid)].max);
tr[u].hismax = max(tr[ls(mid)].hismax, tr[rs(mid)].hismax);
}
inline void apply_add(int u, int tag, int histag) {
if (tr[u].used) {
tr[u].hiscov = max(tr[u].hiscov, tr[u].cov + histag);
tr[u].hismax = max(tr[u].hismax, tr[u].max + histag);
tr[u].max += tag;
tr[u].cov += tag;
}
else {
tr[u].hisadd = max(tr[u].hisadd, tr[u].add + histag);
tr[u].hismax = max(tr[u].hismax, tr[u].max + histag);
tr[u].max += tag;
tr[u].add += tag;
}
}
inline void apply_cover(int u, int tag, int histag) {
if (tr[u].used) {
tr[u].hiscov = max(tr[u].hiscov, histag);
tr[u].hismax = max(tr[u].hismax, histag);
}
else {
tr[u].used = true;
tr[u].hiscov = histag;
tr[u].hismax = max(tr[u].hismax, histag);
}
tr[u].max = tr[u].cov = tag;
}
inline void pushdown(int u, int mid) {
apply_add(ls(mid), tr[u].add, tr[u].hisadd);
apply_add(rs(mid), tr[u].add, tr[u].hisadd);
tr[u].add = tr[u].hisadd = 0;
if (tr[u].used) {
apply_cover(ls(mid), tr[u].cov, tr[u].hiscov);
apply_cover(rs(mid), tr[u].cov, tr[u].hiscov);
tr[u].used = false;
tr[u].cov = tr[u].hiscov = 0;
}
}
void build(int u, int l, int r, const vector<int>& a) {
tr[u].l = l;
tr[u].r = r;
if (l == r) {
tr[u].max = tr[u].hismax = a[l];
return;
}
const int mid = (l + r) >> 1;
build(ls(mid), l, mid, a);
build(rs(mid), mid + 1, r, a);
pushup(u, mid);
}
int qmax(int u, int l, int r) {
if (l <= tr[u].l && tr[u].r <= r) return tr[u].max;
const int mid = (tr[u].l + tr[u].r) >> 1;
int res = -inf;
pushdown(u, mid);
if (l <= mid) res = max(res, qmax(ls(mid), l, r));
if (r > mid) res = max(res, qmax(rs(mid), l, r));
return res;
}
int qhis(int u, int l, int r) {
if (l <= tr[u].l && tr[u].r <= r) return tr[u].hismax;
const int mid = (tr[u].l + tr[u].r) >> 1;
int res = -inf;
pushdown(u, mid);
if (l <= mid) res = max(res, qhis(ls(mid), l, r));
if (r > mid) res = max(res, qhis(rs(mid), l, r));
return res;
}
void add(int u, int l, int r, int v) {
if (l <= tr[u].l && tr[u].r <= r) return apply_add(u, v, v);
const int mid = (tr[u].l + tr[u].r) >> 1;
pushdown(u, mid);
if (l <= mid) add(ls(mid), l, r, v);
if (r > mid) add(rs(mid), l, r, v);
pushup(u, mid);
}
void cover(int u, int l, int r, int v) {
if (l <= tr[u].l && tr[u].r <= r) return apply_cover(u, v, v);
const int mid = (tr[u].l + tr[u].r) >> 1;
pushdown(u, mid);
if (l <= mid) cover(ls(mid), l, r, v);
if (r > mid) cover(rs(mid), l, r, v);
pushup(u, mid);
}
inline void range_add(int l, int r, int v) { add(0, l, r, v); }
inline void range_assign(int l, int r, int v) { cover(0, l, r, v); }
inline int range_max(int l, int r) { return qmax(0, l, r); }
inline int range_hismax(int l, int r) {return qhis(0, l, r); }
};
}
using seg_tree::SegTree;
signed main() {
ios::sync_with_stdio(0);
cin.tie(0), cout.tie(0);
int n; cin >> n;
vector<int> a(n);
for (int i = 0; i < n; i++) cin >> a[i];
int q; cin >> q;
SegTree sgt(a);
for (int i = 0; i < q; i++) {
char op;
int l, r, v;
cin >> op >> l >> r, l--, r--;
if (op == 'Q') cout << sgt.range_max(l, r) << endl;
if (op == 'A') cout << sgt.range_hismax(l, r) << endl;
if (op == 'P') sgt.range_add(l, r, (cin >> v, v));
if (op == 'C') sgt.range_assign(l, r, (cin >> v, v));
}
return 0;
}