0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 21:45:25 +00:00

#6279. 数列分块入门 3

https://loj.ac/s/1465652
This commit is contained in:
Baoshuo Ren 2022-05-18 15:42:56 +08:00
parent 713585bf36
commit 9ba4726cb9
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68
21 changed files with 160 additions and 0 deletions

100
LibreOJ/6279/6279.cpp Normal file
View File

@ -0,0 +1,100 @@
#include <algorithm>
#include <cmath>
#include <iostream>
#include <limits>
using std::cin;
using std::cout;
const char endl = '\n';
const int N = 1e5 + 5;
int n, c, t, a[N], b[N], st[N], ed[N], pos[N], add[N];
inline void process(int x) {
for (int i = st[x]; i <= ed[x]; i++) b[i] = a[i];
std::sort(b + st[x], b + ed[x] + 1);
}
void change(int l, int r, int c) {
int p = pos[l],
q = pos[r];
if (p == q) {
for (int i = l; i <= r; i++) a[i] += c;
process(p);
return;
}
for (int i = l; i <= ed[p]; i++) a[i] += c;
process(p);
for (int i = st[q]; i <= r; i++) a[i] += c;
process(q);
for (int i = p + 1; i <= q - 1; i++) add[i] += c;
}
int query(int l, int r, int c) {
int p = pos[l],
q = pos[r];
int res = std::numeric_limits<int>::min();
if (p == q) {
for (int i = l; i <= r; i++) {
if (a[i] + add[p] < c) res = std::max(res, a[i] + add[p]);
}
} else {
for (int i = l; i <= ed[p]; i++) {
if (a[i] + add[p] < c) res = std::max(res, a[i] + add[p]);
}
for (int i = st[q]; i <= r; i++) {
if (a[i] + add[q] < c) res = std::max(res, a[i] + add[q]);
}
for (int i = p + 1; i <= q - 1; i++) {
int _ = std::lower_bound(b + st[i], b + ed[i] + 1, c - add[i]) - b - 1;
if (st[i] <= _ && _ <= ed[i]) res = std::max(res, b[_] + add[i]);
}
}
return res == std::numeric_limits<int>::min() ? -1 : res;
}
int main() {
std::ios::sync_with_stdio(false);
cin >> n;
for (int i = 1; i <= n; i++) {
cin >> a[i];
b[i] = a[i];
}
t = std::sqrt(n);
for (c = 1;; c++) {
st[c] = (c - 1) * t + 1;
ed[c] = std::min(n, c * t);
if (c * t >= n) break;
}
for (int i = 1; i <= c; i++) {
for (int j = st[i]; j <= ed[i]; j++) {
pos[j] = i;
}
std::sort(b + st[i], b + ed[i] + 1);
}
for (int i = 1, op, l, r, c; i <= n; i++) {
cin >> op >> l >> r >> c;
if (op == 0) {
change(l, r, c);
} else { // op == 1
cout << query(l, r, c) << endl;
}
}
return 0;
}

BIN
LibreOJ/6279/data/a1.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6279/data/a1.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6279/data/a10.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6279/data/a10.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6279/data/a2.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6279/data/a2.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6279/data/a3.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6279/data/a3.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6279/data/a4.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6279/data/a4.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6279/data/a5.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6279/data/a5.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6279/data/a6.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6279/data/a6.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6279/data/a7.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6279/data/a7.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6279/data/a8.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6279/data/a8.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6279/data/a9.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/6279/data/a9.out (Stored with Git LFS) Normal file

Binary file not shown.