#include<iostream>
#define TASKNAME "codeforce"
#define pb push_back
#define pli pair<int,int>
#define fi first
#define se second
#define fastio ios_base::sync_with_stdio(false); cin.tie(NULL);
using namespace std;
using ll=long long;
const ll maxN=2e6+10;
const ll inf=1e18;
const ll mod=1e9+7;
ll st[4*maxN],lazy[4*maxN];
void down(ll id)
{
ll &x=lazy[id];
st[id*2]+=x;
st[id*2+1]+=x;
lazy[id*2+1]+=x;
lazy[id*2]+=x;
x=0;
}
#include<vector>
void update(ll i,ll j,ll v,ll id,ll l,ll r)
{
if(j<l||r<i) return;
if(i<=l&&r<=j)
{
//cout << id<<' '<<v<<'\n';
st[id]+=v;
lazy[id]+=v;
return;
}
ll mid=l+r>>1;
down(id);
update(i,j,v,id*2,l,mid);
update(i,j,v,id*2+1,mid+1,r);
st[id]=min(st[id*2],st[id*2+1]);
}
ll n,m;
vector<int>in[maxN],out[maxN];
int p,x1[maxN],x2[maxN],y1[maxN],y2[maxN],c[maxN],b;
bool check(ll mid)
{
for(int i=1;i<=m+1;i++) in[i].clear(),out[i].clear();
for(int i=1;i<=p;i++)
{
in[max(x1[i]-mid+1,mid)].pb(i);
out[min(x2[i]+mid,m-mid+1)].pb(i);
//cout <<max(x1[i]-mid+1,mid)<<' '<<min(x2[i]+mid,m-mid+1)<<'\n';
}
fill(st,st+4*maxN,0);
fill(lazy,lazy+4*maxN,0);
for(int i=mid;i<=m-mid;i++)
{
for(auto id:in[i])
{
ll l,r;
l=max(y1[id]-mid+1,mid);
r=min(y2[id]+mid-1,n-mid);
update(l,r,c[id],1,mid,n-mid);
}
for(auto id:out[i])
{
ll l,r;
l=max(y1[id]-mid+1,mid);
r=min(y2[id]+mid-1,n-mid);
update(l,r,-c[id],1,mid,n-mid);
}
if(st[1]<=b) return true;
}
return false;
}
void solve()
{
cin >> m >> n;
m*=2;
n*=2;
cin >> b;
cin >> p;
for(int i=1;i<=p;i++)
{
cin >> x1[i] >> y1[i] >> x2[i] >> y2[i] >> c[i];
x1[i]--;
//x2[i]--;
y1[i]--;
//y2[i]--;
x1[i]*=2;
y1[i]*=2;
x2[i]*=2;
y2[i]*=2;
}
ll low=1,high=min(m/2,n/2);
while(low<=high)
{
ll mid=low+high>>1;
if(check(mid)) low=mid+1;
else high=mid-1;
}
cout << high;
//cout << check(4);
}
int main()
{
fastio
//freopen(TASKNAME".INP","r",stdin);
//freopen(TASKNAME".OUT","w",stdout);
solve();
}
Compilation message
pyramid_base.cpp: In function 'void update(ll, ll, ll, ll, ll, ll)':
pyramid_base.cpp:34:13: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
34 | ll mid=l+r>>1;
| ~^~
pyramid_base.cpp: In function 'void solve()':
pyramid_base.cpp:97:19: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
97 | ll mid=low+high>>1;
| ~~~^~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
128 ms |
219528 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
124 ms |
219472 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
160 ms |
219652 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
206 ms |
219980 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
248 ms |
220336 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
383 ms |
220004 KB |
Output is correct |
2 |
Correct |
522 ms |
220412 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
557 ms |
220704 KB |
Output is correct |
2 |
Correct |
408 ms |
219976 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
207 ms |
220584 KB |
Output is correct |
2 |
Correct |
237 ms |
220828 KB |
Output is correct |
3 |
Correct |
222 ms |
220900 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
398 ms |
226856 KB |
Output is correct |
2 |
Correct |
543 ms |
227836 KB |
Output is correct |
3 |
Correct |
470 ms |
227292 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
628 ms |
231064 KB |
Output is correct |
2 |
Correct |
269 ms |
228444 KB |
Output is correct |
3 |
Correct |
252 ms |
221676 KB |
Output is correct |
4 |
Correct |
995 ms |
238284 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
896 ms |
236936 KB |
Output is correct |
2 |
Correct |
1490 ms |
240644 KB |
Output is correct |
3 |
Correct |
482 ms |
226960 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
709 ms |
233732 KB |
Output is correct |
2 |
Correct |
1842 ms |
247832 KB |
Output is correct |
3 |
Correct |
1813 ms |
247304 KB |
Output is correct |
4 |
Correct |
1893 ms |
247044 KB |
Output is correct |
5 |
Correct |
1905 ms |
247696 KB |
Output is correct |
6 |
Correct |
425 ms |
225984 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
2273 ms |
262144 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1726 ms |
262144 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1404 ms |
262144 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |