您的位置:首页 > 其它

lightoj 1004 - Monkey Banana Problem

2016-06-06 00:28 453 查看
1004 - Monkey Banana Problem



 
  

PDF (English)StatisticsForum
Time Limit: 2 second(s)Memory Limit: 32 MB
You are in the world of mathematics to solve the great "Monkey Banana Problem". It states that, a monkey enters into a diamond shaped two dimensional array and can jump in any of the adjacent cells down from its current position (see figure).
While moving from one cell to another, the monkey eats all the bananas kept in that cell. The monkey enters into the array from the upper part and goes out through the lower part. Find the maximum number of bananas the monkey can eat.



Input

Input starts with an integer T (≤ 50), denoting the number of test cases.

Every case starts with an integer N (1 ≤ N ≤ 100). It denotes that, there will be 2*N - 1 rows. The ith (1 ≤ i ≤ N) line of next N lines contains exactly i numbers.
Then there will be N - 1 lines. The jth (1 ≤ j < N) line contains N - j integers. Each number is greater than zero and less than 215.

Output

For each case, print the case number and maximum number of bananas eaten by the monkey.

Sample Input

Output for Sample Input

2

4

7

6 4

2 5 10

9 8 12 2

2 12 7

8 2

10

2

1

2 3

1

Case 1: 63

Case 2: 5

Note

Dataset is huge, use faster I/O methods.

比较简单的dp问题;

#include<iostream>
#include<string>
#include<cstring>
#include<algorithm>
#include<cstdio>
using namespace std;
int num[201][201];
int main()
{
int T;
scanf("%d",&T);
int icase=0;
while(T--)
{
int n;
scanf("%d",&n);
memset(num,0,sizeof(num));
for(int i=1;i<=n;++i)
{
for(int j=1;j<=i;++j)
{
scanf("%d",&num[i][j]);
}
}
for(int i=n+1;i<=2*n-1;++i)
{
for(int j=1;j<=2*n-i;++j)
{
scanf("%d",&num[i][j]);
}
}
for(int i=2;i<=n;++i)
{
for(int j=1;j<=i;++j)
{
num[i][j]+=max(num[i-1][j-1],num[i-1][j]);
}
}
for(int i=n+1;i<=2*n-1;++i)
{
for(int j=1;j<=2*n-1;++j)
{
num[i][j]+=max(num[i-1][j],num[i-1][j+1]);
}
}
printf("Case %d: %d\n",++icase,num[2*n-1][1]);
}
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  lightoj dp