#include <bits/stdc++.h>
using namespace std;
#define y1 fuaihcoia
const int N = (int) (4e5);
int n, m, b, k;
int x1[N], y1[N], x2[N], y2[N], c[N];
void Solve0() {
vector<vector<vector<int>>> qs(n, vector<vector<int>>(2));
for (int i = 0; i < k; i++) {
qs[x2[i]][0].push_back(i);
qs[x1[i]][1].push_back(i);
}
vector<array<int, 6>> st(4 * m);
auto Push = [&](int x) {
if (x * 2 + 1 >= 4 * m) {
return;
}
st[x * 2][0] += st[x][1];
st[x * 2][1] += st[x][1];
st[x * 2 + 1][0] += st[x][1];
st[x * 2 + 1][1] += st[x][1];
st[x][1] = 0;
};
function<void(int, int, int)> Build = [&](int x, int l, int r) {
int d = r - l + 1;
st[x] = {0, 0, d, d, d, d};
if (l == r) {
return;
}
int mid = (l + r) >> 1;
Build(x * 2, l, mid);
Build(x * 2 + 1, mid + 1, r);
};
function<void(int, int, int, int, int, int)> Modify = [&](int x, int l, int r, int ll, int rr, int v) {
if (ll <= l && r <= rr) {
st[x][0] += v;
st[x][1] += v;
Push(x);
return;
}
Push(x);
int mid = (l + r) >> 1;
if (rr <= mid) {
Modify(x * 2, l, mid, ll, rr, v);
} else if (ll > mid) {
Modify(x * 2 + 1, mid + 1, r, ll, rr, v);
} else {
Modify(x * 2, l, mid, ll, rr, v);
Modify(x * 2 + 1, mid + 1, r, ll, rr, v);
}
st[x][0] = min(st[x * 2][0], st[x * 2 + 1][0]);
st[x][2] = max({(st[x * 2][0] == st[x][0] ? st[x * 2][2] : 0), (st[x * 2 + 1][0] == st[x][0] ? st[x * 2 + 1][2] : 0), (st[x * 2][0] == st[x][0] ? st[x * 2][4] : 0) + (st[x * 2 + 1][0] == st[x][0] ? st[x * 2 + 1][3] : 0)});
st[x][3] = (st[x * 2][0] == st[x][0] ? st[x * 2][3] : 0) + (st[x * 2][0] == st[x][0] && st[x * 2 + 1][0] == st[x][0] && st[x * 2][3] == st[x * 2][5] ? st[x * 2 + 1][3] : 0);
st[x][4] = (st[x * 2 + 1][0] == st[x][0] ? st[x * 2 + 1][4] : 0) + (st[x * 2][0] == st[x][0] && st[x * 2 + 1][0] == st[x][0] && st[x * 2 + 1][4] == st[x * 2 + 1][5] ? st[x * 2][4] : 0);
};
Build(1, 0, m - 1);
int ptr = n - 1;
int res = 0;
for (int i = n - 1; i >= 0; i--) {
for (int j : qs[i][0]) {
Modify(1, 0, m - 1, y1[j], y2[j], 1);
}
while (ptr - i + 1 > (st[1][0] == 0 ? st[1][2] : 0)) {
for (int j : qs[ptr][1]) {
Modify(1, 0, m - 1, y1[j], y2[j], -1);
}
ptr -= 1;
}
res = max(res, ptr - i + 1);
}
cout << res << '\n';
}
const int M = (int) (1e6);
long long mn[4 * M], lzy[4 * M];
void Push(int x) {
if (x * 2 + 1 >= 4 * m) {
return;
}
mn[x * 2] += lzy[x];
lzy[x * 2] += lzy[x];
mn[x * 2 + 1] += lzy[x];
lzy[x * 2 + 1] += lzy[x];
lzy[x] = 0;
}
void Modify(int x, int l, int r, int ll, int rr, long long v) {
if (ll <= l && r <= rr) {
mn[x] += v;
lzy[x] += v;
Push(x);
return;
}
Push(x);
int mid = (l + r) >> 1;
if (rr <= mid) {
Modify(x * 2, l, mid, ll, rr, v);
} else if (ll > mid) {
Modify(x * 2 + 1, mid + 1, r, ll, rr, v);
} else {
Modify(x * 2, l, mid, ll, rr, v);
Modify(x * 2 + 1, mid + 1, r, ll, rr, v);
}
mn[x] = min(mn[x * 2], mn[x * 2 + 1]);
}
long long Query(int x, int l, int r, int ll, int rr) {
if (ll <= l && r <= rr) {
return mn[x];
}
Push(x);
int mid = (l + r) >> 1;
long long res;
if (rr <= mid) {
res = Query(x * 2, l, mid, ll, rr);
} else if (ll > mid) {
res = Query(x * 2 + 1, mid + 1, r, ll, rr);
} else {
res = min(Query(x * 2, l, mid, ll, rr), Query(x * 2 + 1, mid + 1, r, ll, rr));
}
mn[x] = min(mn[x * 2], mn[x * 2 + 1]);
return res;
}
bool Check(int d) {
vector<vector<vector<int>>> qs(n + 1, vector<vector<int>>(2));
for (int i = 0; i < k; i++) {
qs[x1[i]][0].push_back(i);
qs[min(n, x2[i] + d)][1].push_back(i);
}
for (int i = 0; i < 4 * m; i++) {
mn[i] = 0;
lzy[i] = 0;
}
for (int i = 0; i < n; i++) {
for (int j : qs[i][0]) {
Modify(1, 0, m - 1, max(0, y1[j] - d + 1), y2[j], c[j]);
}
for (int j : qs[i][1]) {
Modify(1, 0, m - 1, max(0, y1[j] - d + 1), y2[j], -c[j]);
}
if (i + 1 >= d && Query(1, 0, m - 1, 0, m - d) <= b) {
return true;
}
}
return false;
}
void Solve1() {
int low = 1, high = min(n, m), res = 0;
while (low <= high) {
int mid = (low + high) >> 1;
if (Check(mid)) {
res = mid;
low = mid + 1;
} else {
high = mid - 1;
}
}
cout << res << '\n';
}
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
cin >> n >> m >> b >> k;
for (int i = 0; i < k; i++) {
cin >> x1[i] >> y1[i] >> x2[i] >> y2[i] >> c[i];
--x1[i]; --y1[i];
--x2[i]; --y2[i];
}
if (b == 0) {
Solve0();
} else {
Solve1();
}
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
2396 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
2392 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
2652 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
4188 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
13 ms |
20572 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
115 ms |
182520 KB |
Output is correct |
2 |
Correct |
116 ms |
182608 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
111 ms |
184660 KB |
Output is correct |
2 |
Correct |
122 ms |
182556 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
25 ms |
6252 KB |
Output is correct |
2 |
Correct |
69 ms |
4464 KB |
Output is correct |
3 |
Correct |
47 ms |
6256 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
306 ms |
20784 KB |
Output is correct |
2 |
Correct |
491 ms |
20776 KB |
Output is correct |
3 |
Correct |
428 ms |
18720 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1903 ms |
155052 KB |
Output is correct |
2 |
Correct |
431 ms |
92576 KB |
Output is correct |
3 |
Correct |
150 ms |
66160 KB |
Output is correct |
4 |
Correct |
2727 ms |
153364 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2791 ms |
153744 KB |
Output is correct |
2 |
Correct |
4444 ms |
155532 KB |
Output is correct |
3 |
Correct |
1827 ms |
153440 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2475 ms |
155808 KB |
Output is correct |
2 |
Execution timed out |
5039 ms |
154156 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
673 ms |
201444 KB |
Output is correct |
2 |
Correct |
351 ms |
111440 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
806 ms |
210240 KB |
Output is correct |
2 |
Correct |
882 ms |
205248 KB |
Output is correct |
3 |
Correct |
515 ms |
119984 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
984 ms |
218140 KB |
Output is correct |
2 |
Correct |
1306 ms |
214856 KB |
Output is correct |
3 |
Correct |
1285 ms |
214792 KB |
Output is correct |
4 |
Correct |
1155 ms |
212540 KB |
Output is correct |
5 |
Correct |
838 ms |
207124 KB |
Output is correct |