# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
45249 | ikura355 | Maxcomp (info1cup18_maxcomp) | C++14 | 2 ms | 776 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
using namespace std;
const int maxn = 1e3 + 5;
int n,m;
long long p[maxn][maxn];
long long mx[maxn][maxn];
int main() {
scanf("%d%d",&n,&m);
for(int i=1;i<=n;i++) for(int j=1;j<=m;j++) scanf("%d",&p[i][j]);
long long ans = -1;
for(int x=1;x<=n;x++) {
for(int y=1;y<=m;y++) {
mx[x][y] = -p[x][y] + x + y;
if(y!=1) mx[x][y] = max(mx[x][y], mx[x][y-1]);
if(x!=1) mx[x][y] = max(mx[x][y], mx[x-1][y]);
ans = max(ans, p[x][y] - x - y + mx[x][y] - 1);
}
}
for(int x=n;x>=1;x--) {
for(int y=1;y<=m;y++) {
mx[x][y] = -p[x][y] - x + y;
if(y!=1) mx[x][y] = max(mx[x][y], mx[x][y-1]);
if(x!=n) mx[x][y] = max(mx[x][y], mx[x+1][y]);
ans = max(ans, p[x][y] + x - y + mx[x][y] - 1);
}
}
for(int x=1;x<=n;x++) {
for(int y=m;y>=1;y--) {
mx[x][y] = -p[x][y] + x - y;
if(y!=m) mx[x][y] = max(mx[x][y], mx[x][y+1]);
if(x!=1) mx[x][y] = max(mx[x][y], mx[x-1][y]);
ans = max(ans, p[x][y] - x + y + mx[x][y] - 1);
}
}
for(int x=n;x>=1;x--) {
for(int y=m;y>=1;y--) {
mx[x][y] = -p[x][y] - x - y;
if(y!=m) mx[x][y] = max(mx[x][y], mx[x][y+1]);
if(x!=x) mx[x][y] = max(mx[x][y], mx[x+1][y]);
ans = max(ans, p[x][y] + x + y + mx[x][y] - 1);
}
}
printf("%lld",ans);
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |