51NOD-01118 机器人走方格

Posted ONION_CYC

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了51NOD-01118 机器人走方格相关的知识,希望对你有一定的参考价值。

【算法】DP

技术分享
#include<cstdio>
#include<algorithm>
using namespace std;
const int MOD=1000000007,maxn=1010;
int f[maxn][maxn];
int mods(int x)
{return x>MOD?x-MOD:x;}
int main()
{
    int n,m;
    scanf("%d%d",&n,&m);
    f[0][1]=1;
    for(int i=1;i<=n;i++)
    {
        for(int j=1;j<=m;j++)
        {
            f[i][j]=mods(f[i-1][j]+f[i][j-1]);
        }
    }
    printf("%d",f[n][m]);
    return 0;
}
View Code

 

以上是关于51NOD-01118 机器人走方格的主要内容,如果未能解决你的问题,请参考以下文章

51nod 1118 机器人走方格

51nod 1118 机器人走方格 (小数据用dp)

51nod 1120 机器人走方格 V3

51nod 1119 机器人走方格 V2 (组合数学+逆元)

(DP)51NOD 1118 机器人走方格

51Nod1120 机器人走方格 V3