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

hdu 2084 数塔(简单dp)

时间:2014-10-04 11:51:46      阅读:113      评论:0      收藏:0      [点我收藏+]

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

题目

 

简单dp

 

 

 

bubuko.com,布布扣
//简单的dp
#include<stdio.h>
#include<string.h>
#include<algorithm>
using namespace std;
int dp[110][110];//dp[i][j] di i ceng di j ge zui da he 
int a[110][110];

int main()
{
    int t;
    scanf("%d",&t);
    while(t--)
    {
        int n;
        scanf("%d",&n);
        for(int i=1;i<=n;i++){
            for(int j=1;j<=i;j++){
                scanf("%d",&a[i][j]);
            }
        }
        memset(dp,0,sizeof(dp));
        
        for(int i=1;i<=n;i++)
        {
            for(int j=1;j<=i;j++)
            {
                dp[i][j]=a[i][j]+max(dp[i-1][j-1],dp[i-1][j]);
            }
        }
        int ans=-1;
        for(int i=1;i<=n;i++)ans=max(ans,dp[n][i]);
        printf("%d\n",ans);
    }
    return 0;
}
View Code

 

hdu 2084 数塔(简单dp)

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

原文地址:http://www.cnblogs.com/laiba2004/p/4005648.html

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