捕老鼠

Posted tham

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了捕老鼠相关的知识,希望对你有一定的参考价值。

#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]);
}

以上是关于捕老鼠的主要内容,如果未能解决你的问题,请参考以下文章

8.14-T2捕老鼠(cat)

web前端开发JQuery常用实例代码片段(50个)

事件捕获与事件冒泡

MATLAB实战系列(三十九)-matlab多目标优化之海洋捕食者算法

单目标优化求解基于matlab多子群改进的海洋捕食者算法(MSMPA)求解单目标优化问题含Matlab源码 1783期

C# 委托和事件 与 观察者模式(发布-订阅模式)讲解 by天命