#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#include <bits/stdc++.h>
using namespace std;
const long long INF = 1000000000000;
struct segment_tree{
int N;
vector<long long> sum, left;
segment_tree(int N2){
N = 1;
while (N < N2){
N *= 2;
}
sum = vector<long long>(N * 2 - 1, INF);
left = vector<long long>(N * 2 - 1, INF);
for (int i = 0; i < N2; i++){
sum[N - 1 + i] = 0;
left[N - 1 + i] = 0;
}
for (int i = N - 2; i >= 0; i--){
sum[i] = sum[i * 2 + 1] + sum[i * 2 + 2];
left[i] = 0;
}
}
void add(int i, long long x){
i += N - 1;
sum[i] += x;
left[i] = sum[i];
while (i > 0){
i = (i - 1) / 2;
sum[i] = sum[i * 2 + 1] + sum[i * 2 + 2];
left[i] = min(left[i * 2 + 1], sum[i * 2 + 1] + min(left[i * 2 + 2], (long long) 0));
}
}
long long get(){
return left[0];
}
};
int main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
int M, N;
cin >> M >> N;
int B;
cin >> B;
int P;
cin >> P;
vector<int> X1(P), Y1(P), X2(P), Y2(P), C(P);
for (int i = 0; i < P; i++){
cin >> X1[i] >> Y1[i] >> X2[i] >> Y2[i] >> C[i];
X1[i]--;
Y1[i]--;
}
int tv = 0, fv = min(M, N) + 1;
while (fv - tv > 1){
int mid = (tv + fv) / 2;
vector<tuple<int, int, int>> T;
for (int i = 0; i < P; i++){
T.push_back(make_tuple(max(Y1[i] - mid + 1, 0), i, 0));
if (Y2[i] < N - mid + 1){
T.push_back(make_tuple(Y2[i], i, 1));
}
}
sort(T.begin(), T.end());
int cnt = T.size();
segment_tree ST(M - mid + 1);
bool ok = false;
for (int i = 0; i < cnt; i++){
int j = get<1>(T[i]);
int t = get<2>(T[i]);
if (t == 0){
ST.add(max(X1[j] - mid + 1, 0), C[j]);
if (X2[j] < M - mid + 1){
ST.add(X2[j], -C[j]);
}
}
if (t == 1){
ST.add(max(X1[j] - mid + 1, 0), -C[j]);
if (X2[j] < M - mid + 1){
ST.add(X2[j], C[j]);
}
}
if (i < cnt - 1){
if (get<0>(T[i]) != get<0>(T[i + 1])){
if (ST.get() <= B){
ok = true;
}
}
}
}
if (ST.get() <= B){
ok = true;
}
if (ok){
tv = mid;
} else {
fv = mid;
}
}
cout << tv << endl;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
212 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
212 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
340 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
9 ms |
928 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
46 ms |
4532 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
54 ms |
16724 KB |
Output is correct |
2 |
Correct |
381 ms |
33220 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
411 ms |
33348 KB |
Output is correct |
2 |
Correct |
184 ms |
16896 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
13 ms |
804 KB |
Output is correct |
2 |
Correct |
44 ms |
1180 KB |
Output is correct |
3 |
Correct |
50 ms |
1220 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
235 ms |
5416 KB |
Output is correct |
2 |
Correct |
212 ms |
5556 KB |
Output is correct |
3 |
Correct |
206 ms |
5424 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
492 ms |
17892 KB |
Output is correct |
2 |
Correct |
240 ms |
34228 KB |
Output is correct |
3 |
Correct |
38 ms |
1964 KB |
Output is correct |
4 |
Correct |
791 ms |
34796 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
580 ms |
34932 KB |
Output is correct |
2 |
Correct |
992 ms |
35056 KB |
Output is correct |
3 |
Correct |
387 ms |
17996 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
568 ms |
18700 KB |
Output is correct |
2 |
Correct |
1206 ms |
35224 KB |
Output is correct |
3 |
Correct |
1203 ms |
35284 KB |
Output is correct |
4 |
Correct |
1175 ms |
35228 KB |
Output is correct |
5 |
Correct |
1097 ms |
35212 KB |
Output is correct |
6 |
Correct |
245 ms |
17872 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
5096 ms |
48056 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
5077 ms |
58492 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
5057 ms |
62696 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |