比赛 |
清明时悲哀杯 |
评测结果 |
AAAAAA |
题目名称 |
方格取数 |
最终得分 |
100 |
用户昵称 |
TARDIS |
运行时间 |
0.000 s |
代码语言 |
C++ |
内存使用 |
0.00 MiB |
提交时间 |
2017-03-31 18:29:41 |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cmath>
#include<algorithm>
#include<stack>
#include<queue>
#include<cstring>
#include<deque>
#define itn int
#define coder goodboy
using namespace std;
typedef long long LL;typedef unsigned long long ULL;
const int maxn=20;
int n,a[maxn][maxn],f[maxn][maxn][maxn][maxn],temp1,temp2,temp3;
inline void in(){
// freopen("a.in","r",stdin);
freopen("fgqs.in","r",stdin);
freopen("fgqs.out","w",stdout);
scanf("%d",&n);
while (scanf("%d%d%d",&temp1,&temp2,&temp3)==3){
a[temp1][temp2]=temp3;
}
}
inline void dp(){
for (int i=1;i<=n;i++){
for (int j=1;j<=n;j++){
for (int h=1;h<=n;h++){
for (int k=1;k<=n;k++){
temp1=max(f[i-1][j][h-1][k],f[i][j-1][h][k-1]);
temp2=max(f[i-1][j][h][k-1],f[i][j-1][h-1][k]);
f[i][j][h][k]=max(temp1,temp2)+a[i][j];
if (i!=h&&j!=k) f[i][j][h][k]+=a[h][k];
}
}
}
}
}
inline void p(){
printf("%d",f[n][n][n][n]);
}
int Main(){
in();
dp();
p();
return 0;
}
int main(){;}
int goodboy=Main();