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

hdu1978(递推dp)

时间:2014-11-24 15:14:56      阅读:110      评论:0      收藏:0      [点我收藏+]

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

 

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

 

分析:

递推DP。


dp[][]表示可以到达改点的方法数。


刚开始:
外循环扫描所有点dp[x][y],而内循环扫描出所有可以到达
点x、y的点i、j。
那么dp[x][y]就是所有的dp[i][l]之和。

 

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 a[110][110];
int main()
{
    int t,n,m;
    scanf("%d",&t);
    while(t--)
    {
        scanf("%d%d",&n,&m);
        for(int i=1;i<=n;i++)
            for(int j=1;j<=m;j++)
            scanf("%d",&a[i][j]);
        memset(dp,0,sizeof(dp));
        dp[1][1]=1;
        for(int i=1;i<=n;i++)
        for(int j=1;j<=m;j++)
        {
            for(int k=1;k<=i;k++)
            for(int l=1;l<=j;l++)
            {
                if(i-k+j-l<=a[k][l])
                {
                    if(i==k&&j==l)break;
                    dp[i][j]+=dp[k][l];
                }
            }
            dp[i][j]%=10000;
        }
        printf("%d\n",dp[n][m]);
    }
}
View Code

 

hdu1978(递推dp)

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

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

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