This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
#include<wall.h>
#define v(i) vector< i >
using namespace std;
const int maxn=200200;
int n;
const int inf=1e9+7;
struct node
{
int mx,mn;
node():mx(inf),mn(0) {}
} st[maxn*4];
void pull(int inx,int l,int r)
{
if(l!=r)
{
st[inx*2].mn=max(st[inx].mn,min(st[inx*2].mn,st[inx].mx));
st[inx*2].mx=min(st[inx].mx,max(st[inx*2].mx,st[inx].mn));
st[inx*2+1].mn=max(st[inx].mn,min(st[inx*2+1].mn,st[inx].mx));
st[inx*2+1].mx=min(st[inx].mx,max(st[inx*2+1].mx,st[inx].mn));
st[inx].mn=0,st[inx].mx=inf;
}
}
void add(int ql,int qr,int val,int l=0,int r=n-1,int inx=1)
{
pull(inx,l,r);
if(ql<=l&&r<=qr)
{
if(val>0)
{
st[inx].mn=val;
st[inx].mx=max(st[inx].mx,val);
}
else if(val<0)
{
st[inx].mx=val;
st[inx].mn=min(val,st[inx].mn);
}
pull(inx,l,r);
return ;
}
if(ql>r||l>qr)
return ;
int mid=l+(r-l)/2;
add(ql,qr,val,l,mid,inx*2);
add(ql,qr,val,mid+1,r,inx*2+1);
}
int query(int pos,int l=0,int r=n-1,int inx=1)
{
pull(inx,l,r);
if(l==r)
return st[inx].mn;
int mid=l+(r-l)/2;
if(pos<=mid)
return query(pos,l,mid,inx*2);
else
return query(pos,mid+1,r,inx*2+1);
}
void buildWall(int N, int k, int op[], int left[], int right[],
int height[], int finalHeight[])
{
n=N;
for(int i=0; i<k; i++)
{
if(op[i]&1)
add(left[i],right[i],height[i]);
else
add(left[i],right[i],-height[i]);
}
for(int i=0; i<n; i++)
finalHeight[i]=query(i);
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |