hdu 2151

Posted jhcelue

tags:

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

就是一个dp,数组内存的步数,

数组没清空,wa了一次

#include<cstdio>
#include<algorithm>
#include<cstring>
using namespace std;
int step[110][110];
int main()
{
    int N,P,M,T;
    while(scanf("%d%d%d%d",&N,&P,&M,&T)!=EOF){
        memset(step,0,sizeof(step));
            step[0][P]=1;
        for(int i=1;i<=M;i++){
            for(int j=1;j<=N;j++){
                if(step[i-1][j+1]!=0&&j+1<=N) step[i][j]+=step[i-1][j+1];
                if(step[i-1][j-1]!=0&&j-1>=1) step[i][j]+=step[i-1][j-1];

            }
        }
//        for(int i=1;i<=M;i++){
//            for(int j=1;j<=N;j++){
//                    printf("%d ",step[i][j]);
//            }
//            printf("\n");
//        }
        printf("%d\n",step[M][T]);
    }
    return 0;
}


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

hdu 2151

HDU 2176 取(m堆)石子游戏 博弈

HDU 5693 D Game 递归暴力

HDU4057 Rescue the Rabbit(AC自动机+状压DP)

hdu 5694(BD String,折半递归)

HDU3247 Resource Archiver(AC自动机+BFS+DP)