#include <bits/stdc++.h>
#define fi first
#define se second
using namespace std;
typedef pair<int, int> pii;
typedef long long ll;
int M, N, P;
array<int, 5> arr[404040];
ll B;
struct segtree {
int tree[1<<21], lazy[1<<21];
void prop(int v, int st, int ed) {
tree[v] += lazy[v];
if (st != ed) {
lazy[2*v] += lazy[v];
lazy[2*v+1] += lazy[v];
}
lazy[v] = 0;
}
void update(int v, int st, int ed, int lt, int rt, int val) {
prop(v, st, ed);
if (lt > ed || st > rt) return;
if (lt <= st && ed <= rt) {
lazy[v] = val;
prop(v, st, ed);
return;
}
int mid = (st+ed)/2;
update(2*v, st, mid, lt, rt, val);
update(2*v+1, mid+1, ed, lt, rt, val);
tree[v] = min(tree[2*v], tree[2*v+1]);
}
int get(int v, int st, int ed, int lt, int rt) {
prop(v, st, ed);
if (lt > ed || st > rt) return 1e9;
if (lt <= st && ed <= rt) return tree[v];
int mid = (st+ed)/2;
return min(get(2*v, st, mid, lt, rt), get(2*v+1, mid+1, ed, lt, rt));
}
} seg;
vector<pii> add[1010101], rem[1010101];
bool solve(int L) {
for (int i = 0; i <= M-L; i++) add[i].clear();
for (int i = 0; i <= M-L; i++) rem[i].clear();
for (int i = 0; i < (1<<21); i++) seg.tree[i] = seg.lazy[i] = 0;
for (int i = 1; i <= P; i++) {
if (arr[i][0]-L < 0) seg.update(1, 0, N-L, arr[i][1]-L, arr[i][3]-1, +arr[i][4]);
else add[arr[i][0]-L].push_back({arr[i][1]-L, arr[i][3]-1});
rem[arr[i][2]].push_back({arr[i][1]-L, arr[i][3]-1});
}
for (int i = 0; i <= M-L; i++) {
for (auto &[l, r] : add[i]) seg.update(1, 0, N-L, l, r, +arr[i][4]);
for (auto &[l, r] : rem[i]) seg.update(1, 0, N-L, l, r, -arr[i][4]);
if (seg.get(1, 0, N-L, 0, N-L) <= B) return true;
}
return false;
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(0);
cin >> M >> N;
cin >> B >> P;
for (int i = 1; i <= P; i++) {
cin >> arr[i][0] >> arr[i][1] >> arr[i][2] >> arr[i][3] >> arr[i][4];
}
int st = 0, ed = min(M, N);
while (st < ed) {
int mid = (st+ed+1)/2;
if (solve(mid)) st = mid;
else ed = mid-1;
}
cout << st << "\n";
return 0;
}
Compilation message
pyramid_base.cpp: In function 'bool solve(int)':
pyramid_base.cpp:57:20: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
57 | for (auto &[l, r] : add[i]) seg.update(1, 0, N-L, l, r, +arr[i][4]);
| ^
pyramid_base.cpp:58:20: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
58 | for (auto &[l, r] : rem[i]) seg.update(1, 0, N-L, l, r, -arr[i][4]);
| ^
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
28 ms |
66436 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
15 ms |
66140 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
20 ms |
66312 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
26 ms |
66396 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
58 ms |
66708 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
69 ms |
134060 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
63 ms |
133968 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
30 ms |
67160 KB |
Output is correct |
2 |
Incorrect |
55 ms |
66876 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
145 ms |
69876 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
277 ms |
73888 KB |
Output is correct |
2 |
Runtime error |
121 ms |
141548 KB |
Execution killed with signal 11 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
145 ms |
138324 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
337 ms |
76696 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2728 ms |
118932 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
4017 ms |
140324 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
5008 ms |
160224 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |