#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=mid;i<=m-mid;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 |
115 ms |
219468 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
128 ms |
219468 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
164 ms |
219624 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
206 ms |
219980 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
249 ms |
220328 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
310 ms |
220004 KB |
Output is correct |
2 |
Correct |
532 ms |
220424 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
525 ms |
220688 KB |
Output is correct |
2 |
Correct |
340 ms |
220028 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
207 ms |
220484 KB |
Output is correct |
2 |
Correct |
239 ms |
220784 KB |
Output is correct |
3 |
Correct |
239 ms |
220880 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
385 ms |
226964 KB |
Output is correct |
2 |
Correct |
543 ms |
228004 KB |
Output is correct |
3 |
Correct |
465 ms |
227536 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
540 ms |
231504 KB |
Output is correct |
2 |
Correct |
278 ms |
228508 KB |
Output is correct |
3 |
Correct |
262 ms |
221816 KB |
Output is correct |
4 |
Correct |
961 ms |
238652 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
839 ms |
237528 KB |
Output is correct |
2 |
Correct |
1447 ms |
241240 KB |
Output is correct |
3 |
Correct |
395 ms |
227388 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
623 ms |
234320 KB |
Output is correct |
2 |
Correct |
1939 ms |
248460 KB |
Output is correct |
3 |
Correct |
1749 ms |
247892 KB |
Output is correct |
4 |
Correct |
1993 ms |
247744 KB |
Output is correct |
5 |
Correct |
2064 ms |
248696 KB |
Output is correct |
6 |
Correct |
334 ms |
227008 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
2365 ms |
262144 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1767 ms |
262144 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1428 ms |
262144 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |