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

hdu 2084 数塔(递推 水)

时间:2015-01-26 18:39:18      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:

#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
using namespace std;
int mat[120][120];
int main()
{
    int c,n;
    int i,j,k;
    scanf("%d",&c);
    while(c--)
    {
        scanf("%d",&n);
        for(i=1;i<=n;i++)
        {
            for(j=1;j<=i;j++)
            {
                scanf("%d",&mat[i][j]);
            }
        }
        for(i=n-1;i>=1;i--)
        {
            for(j=1;j<=i;j++)
            {
                mat[i][j]+=max(mat[i+1][j],mat[i+1][j+1]);
            }
        }
        printf("%d\n",mat[1][1]);
    }
    return 0;
}

 

hdu 2084 数塔(递推 水)

标签:

原文地址:http://www.cnblogs.com/sola1994/p/4250729.html

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