#include <bits/stdc++.h>
using namespace std;
#ifdef tabr
#include "library/debug.cpp"
#else
#define debug(...)
#endif
struct segtree {
using T = long long;
using F = long long;
T e() {
return (int) 2e9;
}
F id() {
return 0;
}
T op(T a, T b) {
return min(a, b);
}
T mapping(F f, T x) {
return f + x;
}
F composition(F f, F g) {
return f + g;
}
int n;
vector<T> node;
vector<F> lazy;
segtree() : segtree(0) {}
segtree(int _n) {
if (_n <= 1) {
n = _n;
} else {
n = 1 << (32 - __builtin_clz(_n - 1));
}
node.resize(2 * n, e());
lazy.resize(n, id());
}
segtree(vector<T> v) {
if ((int) v.size() <= 1) {
n = (int) v.size();
} else {
n = 1 << (32 - __builtin_clz((int) v.size() - 1));
}
node.resize(2 * n, e());
lazy.resize(n, id());
for (int i = 0; i < (int) v.size(); i++) {
node[i + n] = v[i];
}
for (int i = n - 1; i > 0; i--) {
node[i] = op(node[i * 2], node[i * 2 + 1]);
}
}
void eval(int k) {
node[2 * k] = mapping(lazy[k], node[2 * k]);
node[2 * k + 1] = mapping(lazy[k], node[2 * k + 1]);
if (2 * k < n) {
lazy[2 * k] = composition(lazy[k], lazy[2 * k]);
lazy[2 * k + 1] = composition(lazy[k], lazy[2 * k + 1]);
}
lazy[k] = id();
}
void update(int x, int y, F v, int k, int l, int r) {
if (y <= l || r <= x) {
return;
}
if (x <= l && r <= y) {
node[k] = mapping(v, node[k]);
if (k < n) {
lazy[k] = composition(v, lazy[k]);
}
} else {
eval(k);
update(x, y, v, 2 * k, l, (l + r) / 2);
update(x, y, v, 2 * k + 1, (l + r) / 2, r);
node[k] = op(node[2 * k], node[2 * k + 1]);
}
}
T get(int x, int y, int k, int l, int r) {
if (y <= l || r <= x) {
return e();
}
if (x <= l && r <= y) {
return node[k];
}
eval(k);
T vl = get(x, y, 2 * k, l, (l + r) / 2);
T vr = get(x, y, 2 * k + 1, (l + r) / 2, r);
return op(vl, vr);
}
void update(int x, int y, F v) {
update(x, y, v, 1, 0, n);
}
T get(int x, int y) {
return get(x, y, 1, 0, n);
}
T get(int x) {
return get(x, x + 1, 1, 0, n);
}
};
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
int h, w;
cin >> h >> w;
int d;
cin >> d;
int n;
cin >> n;
vector<tuple<int, int, int, int>> a(n), b(n);
for (int i = 0; i < n; i++) {
int x1, y1, x2, y2, c;
cin >> x1 >> y1 >> x2 >> y2 >> c;
x1--, y1--;
a[i] = make_tuple(x1, y1, y2, c);
b[i] = make_tuple(x2, y1, y2, c);
}
sort(a.begin(), a.end());
sort(b.begin(), b.end());
int hi = min(w, h) + 1;
int lo = 0;
while (hi - lo > 1) {
int mid = (hi + lo) / 2;
int aid = 0;
int bid = 0;
int ok = 0;
vector<int> ys;
for (int i = 0; i < n; i++) {
auto [x2, y1, y2, c] = b[i];
y1 = max(0, y1 - mid + 1);
ys.emplace_back(y1);
ys.emplace_back(y2);
}
for (int i = 0; i < n; i++) {
auto [x1, y1, y2, c] = a[i];
y1 = max(0, y1 - mid + 1);
ys.emplace_back(y1);
ys.emplace_back(y2);
}
ys.emplace_back(w - mid + 1);
sort(ys.begin(), ys.end());
ys.resize(unique(ys.begin(), ys.end()) - ys.begin());
while (ys.back() > w - mid + 1) {
ys.pop_back();
}
int sz = (int) ys.size();
segtree seg = segtree(vector<long long>(sz));
for (int i = 0; i < h - mid + 1; i++) {
while (bid < n && get<0>(b[bid]) <= i) {
auto [x2, y1, y2, c] = b[bid];
y1 = max(0, y1 - mid + 1);
y1 = (int) (lower_bound(ys.begin(), ys.end(), y1) - ys.begin());
y2 = (int) (lower_bound(ys.begin(), ys.end(), y2) - ys.begin());
y1 = min(y1, sz);
y2 = min(y2, sz);
seg.update(y1, y2, -c);
bid++;
}
while (aid < n && get<0>(a[aid]) - mid + 1 <= i) {
auto [x1, y1, y2, c] = a[aid];
y1 = max(0, y1 - mid + 1);
y1 = (int) (lower_bound(ys.begin(), ys.end(), y1) - ys.begin());
y2 = (int) (lower_bound(ys.begin(), ys.end(), y2) - ys.begin());
y1 = min(y1, sz);
y2 = min(y2, sz);
seg.update(y1, y2, c);
aid++;
}
if (seg.get(0, sz) <= d) {
ok = 1;
break;
}
}
if (ok) {
lo = mid;
} else {
hi = mid;
}
}
cout << lo << '\n';
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
204 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
204 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
4 ms |
332 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
7 ms |
408 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
59 ms |
420 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
99 ms |
332 KB |
Output is correct |
2 |
Incorrect |
1037 ms |
404 KB |
Output isn't correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
907 ms |
508 KB |
Output is correct |
2 |
Correct |
255 ms |
372 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
27 ms |
692 KB |
Output is correct |
2 |
Correct |
84 ms |
788 KB |
Output is correct |
3 |
Correct |
68 ms |
820 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
301 ms |
2064 KB |
Output is correct |
2 |
Incorrect |
506 ms |
2096 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
456 ms |
2256 KB |
Output is correct |
2 |
Correct |
41 ms |
1756 KB |
Output is correct |
3 |
Correct |
169 ms |
3304 KB |
Output is correct |
4 |
Incorrect |
973 ms |
3356 KB |
Output isn't correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1002 ms |
3528 KB |
Output is correct |
2 |
Correct |
2248 ms |
3752 KB |
Output is correct |
3 |
Incorrect |
320 ms |
2000 KB |
Output isn't correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
779 ms |
2752 KB |
Output is correct |
2 |
Incorrect |
2352 ms |
3856 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
5065 ms |
26280 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
5087 ms |
30816 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
5062 ms |
52040 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |