记录编号 |
593327 |
评测结果 |
AAAAAAAAAA |
题目名称 |
Partition |
最终得分 |
100 |
用户昵称 |
郑霁桓 |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
3.460 s |
提交时间 |
2024-08-29 21:36:19 |
内存使用 |
78.90 MiB |
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
long long n,m,s[2005][2005],a[2005][2005];
long long ss,f[2005][2005],g[2005][2005];
int main(){
freopen("partition.in","r",stdin);
freopen("partition.out","w",stdout);
scanf("%lld%lld",&n,&m);
for(int i=1;i<=n;i++){
for(int j=1;j<=m;j++){
scanf("%lld",&a[i][j]);
ss+=a[i][j];
}
}
for(int i=n;i>=1;i--){
for(int j=1;j<=m;j++){
s[i][j]=s[i+1][j]+a[i][j];
}
}
for(int i=0;i<=n+1;i++){
for(int j=0;j<=m+1;j++){
f[i][j]=g[i][j]=-10000000000;
}
}
f[0][1]=g[0][m+1]=0;
for(int i=1;i<=n+1;i++){
for(int j=1;j<=m+1;j++){
f[i][j]=max(f[i-1][j],f[i][j-1]+s[i][j-1]);
}
for(int j=m+1;j>=1;j--){
g[i][j]=max(g[i-1][j],g[i][j+1]+s[i][j]);
}
}
cout<<ss+2*f[n+1][m+1]+g[n+1][1];
return 0;
}