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

hdu2151(递推dp)

时间:2014-11-24 15:00:57      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   os   sp   for   

 

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2151

 

分析: DP。
思路:全盘扫描。
     i表示时间,l表示第几棵树,方程:
     step[i][l]=step[i-1][l-1]+step[i-1][l+1]。

 

bubuko.com,布布扣
#include <cstdio>
#include <cstring>
#include <cmath>
#include <algorithm>
#include <queue>
#include <cstdlib>
#include <vector>
#include <set>
#include <map>
#define LL long long
using namespace std;
int dp[110][110];
int main()
{
    int n,p,m,t;
    while(scanf("%d%d%d%d",&n,&p,&m,&t)>0)
    {
        memset(dp,0,sizeof(dp));
        dp[0][p]=1;
        for(int i=1;i<=m;i++)
        {
            dp[i][1]=dp[i-1][2];
            dp[i][n]=dp[i-1][n-1];
            for(int j=2;j<n;j++)
                dp[i][j]=dp[i-1][j-1]+dp[i-1][j+1];
        }
        printf("%d\n",dp[m][t]);
    }
}
View Code

 

hdu2151(递推dp)

标签:style   blog   http   io   ar   color   os   sp   for   

原文地址:http://www.cnblogs.com/lienus/p/4118449.html

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