-
Notifications
You must be signed in to change notification settings - Fork 3
/
lightoj 1004.cpp
80 lines (60 loc) · 1.31 KB
/
lightoj 1004.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#include<bits/stdc++.h>
using namespace std;
int n;
int a[201][101];
int dp[201][101];
int func(int r,int c)
{
if(r>=0&&r<n*2-1&&c>=0&&c<n)
{
if(dp[r][c]!=-1)
{
return dp[r][c];
}
int re=-1e9;
if(r<n-1)
{
re=max(re,func(r+1,c)+a[r][c]);
re=max(re,func(r+1,c+1)+a[r][c]);
}
else
{
re=max(re,func(r+1,c)+a[r][c]);
re=max(re,func(r+1,c-1)+a[r][c]);
}
return dp[r][c]=re;
}
return 0;
}
int main()
{
int t;
scanf("%d",&t);
for(int ii=1; ii<=t; ii++)
{
memset(dp,-1,sizeof(dp));
memset(a,0,sizeof(a));
scanf("%d",&n);
int i;
for(i=0; i<n; i++)n
{
for(int j=0; j<=i; j++)
scanf("%d",&a[i][j]);
}
int k=n-2;
for(i=i; i<n*2-1; i++)
{
for(int j=0; j<=k; j++)
scanf("%d",&a[i][j]);
k--;
}
// for(int i=0;i<n*2-1;i++)
// {
// for(int j=0;j<n;j++)
// cout<<a[i][j]<<" ";
// cout<<endl;
// }
printf("Case %d: %d\n",ii,func(0,0));
}
return 0;
}