//Arayi
#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <string>
#include <queue>
#include <stack>
#include <algorithm>
#include <math.h>
#include <vector>
#include <cstring>
#include <ctime>
#include <set>
#include <bitset>
#include <map>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <ctime>
#include <climits>
#include <cassert>
#include <chrono>
#include <random>
#include <complex>
#define fr first
#define sc second
#define MP make_pair
#define ad push_back
#define PB push_back
#define fastio ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0);
#define lli long long int
#define y1 arayikhalatyan
#define j1 jigglypuff
#define ld long double
#define itn int
#define pir pair<int, int>
#define all(x) (x).begin(), (x).end()
#define str string
#define enl endl
#define en endl
#define cd complex<long double>
#define vcd vector<cd>
#define vii vector<int>
#define vlli vector<lli>
using namespace std;
const int N = 2e6 + 30;
int n, k, m, p;
int x1[N], x2[N], y1[N], y2[N], c[N];
vector <pair<pair<int, int>, int> > fp[N];
int t[4*N], flg[4*N];
void push(int nd)
{
t[nd] += flg[nd];
flg[nd*2] += flg[nd];
flg[nd*2+1] += flg[nd];
flg[nd] = 0;
}
void upd(int l, int r, int v, int nl = 1, int nr = m, int nd = 1)
{
push(nd);
if(l > nr || r < nl) return;
if(l == nl && nr == r)
{
flg[nd] += v;
push(nd);
return;
}
int mid = (nl + nr) / 2;
upd(l, min(mid, r), v, nl, mid, nd*2);
upd(max(mid + 1, l), r, v, mid + 1, nr, nd * 2 + 1);
t[nd] = min(t[nd*2], t[nd*2+1]);
}
bool stg(int md)
{
for (int i = 0; i <= 4*m; i++) flg[i]=t[i]=0;
upd(m - md + 1, m, k + 1);
for (int i = 1; i <= n - md; i++)
{
for(auto& p : fp[i])
upd(p.fr.fr, p.fr.sc, p.sc);
push(1);
if(t[1] <= k) return 1;
}
return 0;
}
int main()
{
fastio;
//freopen("input.in", "r", stdin);
cin >> n >> m >> k >> p;
for (int i = 0; i < p; i++) cin >> x1[i] >> y1[i] >> x2[i] >> y2[i] >> c[i];
int l = 1, r = min(n, m), ans = 0;
while(l <= r)
{
int md = (l + r) / 2;
for (int i = 0; i < p; i++)
{
fp[max(1, x1[i] - md + 1)].ad(MP(MP(max(1, y1[i] - md + 1), min(m-md, y2[i])), c[i]));
fp[x2[i] + 1].ad(MP(MP(max(1, y1[i] - md + 1), min(m-md, y2[i])), -c[i]));
}
if(stg(md)) ans = md, l=md+1;
else r=md-1;
for (int i = 0; i <= n + 1; i++) fp[i].clear();
}
cout << ans << endl;
return 0;
}
/*
__
*(><)*
\/ /
||/
--||
||
/\
/ \
/ \
*/
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
39 ms |
47296 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
36 ms |
47304 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
41 ms |
47384 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
42 ms |
47964 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
79 ms |
51232 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
221 ms |
78936 KB |
Output is correct |
2 |
Correct |
331 ms |
79588 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
356 ms |
79224 KB |
Output is correct |
2 |
Correct |
230 ms |
78816 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
58 ms |
48204 KB |
Output is correct |
2 |
Correct |
117 ms |
48324 KB |
Output is correct |
3 |
Correct |
101 ms |
48444 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
310 ms |
53696 KB |
Output is correct |
2 |
Incorrect |
616 ms |
54288 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
658 ms |
84436 KB |
Output is correct |
2 |
Incorrect |
171 ms |
52628 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1060 ms |
87244 KB |
Output is correct |
2 |
Correct |
1947 ms |
90820 KB |
Output is correct |
3 |
Incorrect |
500 ms |
82328 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
920 ms |
85496 KB |
Output is correct |
2 |
Incorrect |
2380 ms |
92852 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
5046 ms |
116056 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
5050 ms |
121264 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
5064 ms |
128316 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |