码迷,mamicode.com
首页 > 其他好文 > 详细

捕老鼠

时间:2017-11-17 13:30:16      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:pen   out   iostream   char   cat   std   math.h   getch   include   

#include<queue>
#include<cstdio>
#include<iostream>
#include<algorithm>
#include <cstring>
#include <string.h>
#include <cmath>
#include <math.h>
#define ll long long
#define N 500005
#define db double
#define P putchar
#define G getchar
#define mo 1000000007
using namespace std;
char ch;
void read(int &n)
{
    n=0;
    ch=G();
    while((ch<'0' || ch>'9') && ch!='-')ch=G();
    ll w=1;
    if(ch=='-')w=-1,ch=G();
    while('0'<=ch && ch<='9')n=n*10+ch-'0',ch=G();
    n*=w;
}

int max(int a,int b){return a>b?a:b;}
int min(int a,int b){return a<b?a:b;}

void write(int x)
{
     if(x>9) write(x/10);
     P(x%10+'0');
}

struct node
{
    int x,l,r;
}t[4*N];

int n,f[N],a[N],opl,opr,x,opx,ops;

void make(int x,int l,int r)
{
    t[x].l=l;t[x].r=r;
    t[x].x=2147483647;
    if(l==r)return;
    int m=(l+r)/2;
    make(x+x,l,m);
    make(x+x+1,m+1,r);
}

void work(int x)
{
    if(t[x].l>=opl && t[x].r<=opr)
    {
        if(opx==1)t[x].x=min(t[x].x,ops);
        if(opx==2)ops=min(ops,t[x].x);
        return;
    }
    if(t[x].l==t[x].r)return;
    int m=(t[x].l+t[x].r)/2;
    if(opl<=m)work(x+x);
    if(m<opr)work(x+x+1);

    t[x].x=min(t[x+x].x,t[x+x+1].x);
}

int main()
{
    freopen("cat.in","r",stdin);
    freopen("cat.out","w",stdout);
    read(n);
    for(int i=1;i<=n;i++)
    {
        read(x);
        if(i+x<=n)a[i+x]=max(a[i+x],2*x+1);else a[n]=max(a[n],n-(i-x)+1);
    }

    memset(f,127,sizeof(f));

    make(1,1,n);
    for(int i=1;i<=n;i++)
    {
        opl=i-a[i];opr=i-1;
        if(opl<=0)f[i]=1;
        else
        {
            ops=f[i]-1;
            opx=2; 
            if(opl<=opr)work(1);
            f[i]=ops+1;
        }
        ops=f[i];opx=1;
        opl=opr=i;
        work(1);
    }

    write(f[n]);
}

捕老鼠

标签:pen   out   iostream   char   cat   std   math.h   getch   include   

原文地址:http://www.cnblogs.com/tham/p/7850902.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!