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

NYOJ-171 填表法 普通dp

时间:2018-05-05 17:18:30      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:def   pid   acm   ace   代码   ems   tar   int   turn   

题目链接:

http://acm.nyist.edu.cn/JudgeOnline/problem.php?pid=171

分析:

kk每次只能向右边和下边走,所以取他的上面和左边的最大值加上自己

dp[i][j]=f_max(dp[i-1][j],dp[i][j-1])+a[i][j];

代码如下:

#include<bits/stdc++.h>
#define pai 3.1415926535898
using namespace std;
int f_max(int a,int b)
{
    if(a>b)
    {
        return a;
    }else
    {
        return b;
    }
}
int main()
{
    int n,m;
    scanf("%d %d",&n,&m);
    int a[n+1][m+1];
    memset(a,0,sizeof(a));
    for(int i=1;i<=n;i++)
    {
        for(int j=1;j<=m;j++)
        {
            scanf("%d",&a[i][j]);
        }
    }
    int dp[n+1][m+1];
    memset(dp,0,sizeof(dp));
    for(int i=1;i<=n;i++)
    {
        for(int j=1;j<=m;j++)
        {
            dp[i][j]=f_max(dp[i-1][j],dp[i][j-1])+a[i][j];
        }
    }
    printf("%d\n",dp[n][m]);
    return 0;
}

 

NYOJ-171 填表法 普通dp

标签:def   pid   acm   ace   代码   ems   tar   int   turn   

原文地址:https://www.cnblogs.com/yinbiao/p/8995205.html

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