Gym 100851L Landscape Improved(二分+脑洞)

来源:互联网 发布:长沙app软件开发公司 编辑:程序博客网 时间:2024/06/05 00:13

这里写图片描述
wn使
n
O(n)
ia[i]+1ht1L[t1]=i+1ht2R[t2]=i

L[i]=max(L[i],L[i1])
R[i]=min(R[i],R[i+1])
w


代码:

#include <map>#include <set>#include <ctime>#include <stack>#include <queue>#include <cmath>#include <string>#include <vector>#include <cstdio>#include <cctype>#include <cstring>#include <sstream>#include <cstdlib>#include <iostream>#include <algorithm>#pragma comment(linker,"/STACK:102400000,102400000")using namespace std;#define   MAX           100005#define   MAXN          1000005#define   maxnode       205#define   sigma_size    26#define   lson          l,m,rt<<1#define   rson          m+1,r,rt<<1|1#define   lrt           rt<<1#define   rrt           rt<<1|1#define   middle        int m=(r+l)>>1#define   LL            long long#define   ull           unsigned long long#define   mem(x,v)      memset(x,v,sizeof(x))#define   lowbit(x)     (x&-x)#define   pii           pair<int,int>#define   bits(a)       __builtin_popcount(a)#define   mk            make_pair#define   limit         10000//const int    prime = 999983;const int    INF   = 0x3f3f3f3f;const LL     INFF  = 0x3f3f;const double pi    = acos(-1.0);const double inf   = 1e18;const double eps   = 1e-4;const LL    mod    = 772002;const ull    mx    = 133333331;/*****************************************************/inline void RI(int &x) {      char c;      while((c=getchar())<'0' || c>'9');      x=c-'0';      while((c=getchar())>='0' && c<='9') x=(x<<3)+(x<<1)+c-'0'; }/*****************************************************/int a[MAX];LL sum[MAX];int L[MAX],R[MAX];int n;LL w;bool check(int h){    mem(L,0);    mem(R,INF);    for(int i=1;i<=n;i++){        int t1=i+h-a[i];        int t2=i-(h-a[i]);        //cout<<t1<<" "<<t2<<endl;        if(t1<=n) L[t1]=max(L[t1],i);        if(t2>=1) R[t2]=min(R[t2],i);    }    for(int i=1;i<=n;i++) L[i]=max(L[i-1],L[i]);    for(int i=n;i>0;i--) R[i]=min(R[i],R[i+1]);    for(int i=1;i<=n;i++){        if(L[i]==0||R[i]==INF) continue;        LL tmp=(1+i-(LL)R[i]+2LL*h)*((LL)R[i]-i)/2;        tmp+=((LL)2*h-i+(LL)L[i]+1)*((LL)i-L[i])/2;        tmp-=h;        tmp-=sum[R[i]-1]-sum[L[i]];        if(tmp<=w) return true;    }    return false;}int main(){    freopen("landscape.in","r",stdin);    freopen("landscape.out","w",stdout);    cin>>n>>w;    sum[0]=0;    int maxn=0;    for(int i=1;i<=n;i++){        scanf("%d",&a[i]);        maxn=max(a[i],maxn);        sum[i]=sum[i-1]+a[i];    }    int l=maxn,r=2e9;    while(l<=r){        int mid=(l+r)/2;        //cout<<1;        if(check(mid)) l=mid+1;        else r=mid-1;    }    cout<<r<<endl;    return 0;}
0 0
原创粉丝点击