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

51 nod 1522 上下序列——序列dp

时间:2018-09-19 10:15:25      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:class   符号   操作   一个   div   ble   names   nbsp   blank   

题目:http://www.51nod.com/onlineJudge/questionCode.html#!problemId=1522

很好的思想。考虑从小到大一对一对填数,这样也能对它的大小限制做一些操作了。

因为从小到大,所以只能全填在左边、全填在右边、两边各填一个。记录左边填到了哪个位置,就可知右边填到了哪个位置。转移之前判断一下这样填是否合法即可。

新的不合法的状态只会和现在填的两个位置有关。

注意输入格式!!符号前后有空格!!!

#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#define ll long long
using namespace std;
const int N=40,M=105;
int n,m,x[M],y[M],sgn[M],tx,ty;
ll dp[N][N<<1],ans;
char ch[20];
bool check(int p0,int p1,int r,int fx)
{
    //printf("p0=%d p1=%d r=%d fx=%d\n",p0,p1,r,fx);
    for(int i=1;i<=m;i++)
        if(sgn[i]==0&&
           ( ( (x[i]==p0||x[i]==p1)&&y[i]!=p0&&y[i]!=p1)||
             ( (y[i]==p0||y[i]==p1)&&x[i]!=p0&&x[i]!=p1) ) )
            return 0;//以前都合法,不合法仅出现在p0、p1位置上
    if(!fx)
    {
        for(int i=1;i<=m;i++)
        {
            //printf("sgn[%d]=%d\n",i,sgn[i]);
            if(sgn[i]==1||sgn[i]==2)
            {
                tx=x[i];ty=y[i];
                if(sgn[i]==2)swap(tx,ty);
                //printf("tx=%d ty=%d p0=%d p1=%d r=%d\n",tx,ty,p0,p1,r);
                if((ty==p0||ty==p1)&&tx>=p0&&tx<r) return 0;
            }
            if(sgn[i]==3||sgn[i]==4)
            {
                tx=x[i];ty=y[i];
                if(sgn[i]==4)swap(tx,ty);
                if((ty==p0||ty==p1)&&tx>p1&&tx<r) return 0;
            }
        }
    }
    if(fx==1)
    {
        for(int i=1;i<=m;i++)
        {
            if(sgn[i]==1||sgn[i]==2)
            {
                tx=x[i];ty=y[i];
                if(sgn[i]==2)swap(tx,ty);
                if((ty==p0||ty==p1)&&tx<=p1&&tx>r) return 0;
            }
            if(sgn[i]==3||sgn[i]==4)
            {
                tx=x[i];ty=y[i];
                if(sgn[i]==4)swap(tx,ty);
                if((ty==p0||ty==p1)&&tx<p0&&tx>r) return 0;
            }
        }
    }
    if(fx==2)
    {
        for(int i=1;i<=m;i++)
        {
            if(sgn[i]==1||sgn[i]==2)
            {
                tx=x[i];ty=y[i];
                if(sgn[i]==2)swap(tx,ty);
                if((ty==p0||ty==p1)&&tx>=p0&&tx<=p1) return 0;
            }
            if(sgn[i]==3||sgn[i]==4)
            {
                tx=x[i];ty=y[i];
                if(sgn[i]==4)swap(tx,ty);
                if((ty==p0||ty==p1)&&tx>p0&&tx<p1) return 0;
            }
        }
    }
    return 1;
}
int main()
{
    scanf("%d%d",&n,&m);ch[0]=getchar();
    while(ch[0]!=\n)ch[0]=getchar();
    for(int i=1,len=0,j;i<=m;i++,len=0)
    {
        ch[++len]=getchar();
        while(ch[len]!=\n)ch[++len]=getchar();
        for(j=1;j<len;j++)
        {
            if(ch[j]>=0&&ch[j]<=9)
                x[i]=(x[i]<<3)+(x[i]<<1)+ch[j]-0;
            else break;
        }
        while(ch[j]== )j++;
        //printf("j=%d chj=(%c)\n",j,ch[j]);
        if(ch[j]===) sgn[i]=0,j++;
        else if(ch[j]==<&&ch[j+1]===)sgn[i]=3,j+=2;
        else if(ch[j]==>&&ch[j+1]===)sgn[i]=4,j+=2;
        else if(ch[j]==<)sgn[i]=1,j++;
        else if(ch[j]==>)sgn[i]=2,j++;
        while(ch[j]== )j++;
        //printf("j=%d chj=(%c)\n",j,ch[j]);
        for(;j<len;j++)
            y[i]=(y[i]<<3)+(y[i]<<1)+ch[j]-0;
        //printf("x=%d sgn=%d y=%d\n",x[i],sgn[i],y[i]);
    }
    dp[0][0]=1;
    for(int i=0,lm;i<n;i++)
    {
        lm=(i<<1);
        for(int j=0,r;j<=lm;j++)
        {
            //if(dp[i][j])printf("dp[%d][%d]=%lld\n",i,j,dp[i][j]);
            r=(n<<1)-(lm-j)+1;
            if(check(j+1,j+2,r,0))
                dp[i+1][j+2]+=dp[i][j];
                    //printf("dp[%d][%d]=%lld(%d,%d)\n",i+1,j+2,dp[i+1][j+2],i,j);
            if(check(r-2,r-1,j,1))
                dp[i+1][j]+=dp[i][j];
            //printf("dp[%d][%d]=%lld(%d,%d)\n",i+1,j,dp[i+1][j],i,j);
            if(check(j+1,r-1,0,2))
                dp[i+1][j+1]+=dp[i][j];
                    //printf("dp[%d][%d]=%lld(%d,%d)\n",i+1,j+1,dp[i+1][j+1],i,j);
        }
    }
    int lm=(n<<1);
    for(int j=0;j<=lm;j++) ans+=dp[n][j];
    printf("%lld\n",ans/3);
    return 0;
}

 

51 nod 1522 上下序列——序列dp

标签:class   符号   操作   一个   div   ble   names   nbsp   blank   

原文地址:https://www.cnblogs.com/Narh/p/9672719.html

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