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

hdu 2048

时间:2014-08-12 16:58:14      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   io   strong   for   

bubuko.com,布布扣bubuko.com,布布扣bubuko.com,布布扣

 

#include <iostream> //2084 hdu c++
#include<string.h>
using namespace std;
int a[105][105],b[105][105];
int n;
int max(int x, int y)
{ return x>y?x:y ; }

int f(int i,int j)
{
if(b[i][j]!=-1) return b[i][j];
return b[i][j]=a[i][j]+max(f(i+1,j),f(i+1,j+1));
}

int main()
{
int i,j,c;
cin>>c;
while(c--)
{
cin>>n ;
for(i=0;i<n;i++)
for(j=0;j<=i;j++) cin>>a[i][j];
memset(b,-1,sizeof(b));
for(j=0;j<n;j++) b[i-1][j]=a[i-1][j];
cout<<f(0,0)<<endl;
}

}

hdu 2048,布布扣,bubuko.com

hdu 2048

标签:style   blog   http   color   os   io   strong   for   

原文地址:http://www.cnblogs.com/2014acm/p/3907502.html

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