# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
45425 | choikiwon | Maxcomp (info1cup18_maxcomp) | C++17 | 198 ms | 4660 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;
int N, M;
int A[1010][1010];
int mn1[1010], mn2[1010];
int main() {
scanf("%d %d", &N, &M);
for(int i = 0; i < N; i++) {
for(int j = 0; j < M; j++) {
scanf("%d", &A[i][j]);
}
}
int ans = -2e9;
for(int i = 0; i < M; i++) {
mn1[i] = 2e9;
mn2[i] = 2e9;
}
for(int i = N - 1; i >= 0; i--) {
int tmn1 = 2e9;
int tmn2 = 2e9;
for(int j = 0; j < M; j++) {
ans = max(ans, A[i][j] + i - j - tmn1 - 1);
mn1[j] = min(mn1[j], A[i][j] + i - j);
tmn1 = min(tmn1, mn1[j]);
}
for(int j = M - 1; j >= 0; j--) {
ans = max(ans, A[i][j] + i + j - tmn2 - 1);
mn2[j] = min(mn2[j], A[i][j] + i + j);
tmn2 = min(tmn2, mn2[j]);
}
}
for(int i = 0; i < M; i++) {
mn1[i] = 2e9;
mn2[i] = 2e9;
}
for(int i = 0; i < N; i++) {
int tmn1 = 2e9;
int tmn2 = 2e9;
for(int j = M - 1; j >= 0; j--) {
mn1[j] = min(mn1[j], A[i][j] - (i - j));
tmn1 = min(tmn1, mn1[j]);
ans = max(ans, A[i][j] - (i - j) - tmn1 - 1);
}
for(int j = 0; j < M; j++) {
mn2[j] = min(mn2[j], A[i][j] - (i + j));
tmn2 = min(tmn2, mn2[j]);
ans = max(ans, A[i][j] - (i + j) - tmn2 - 1);
}
}
printf("%d", 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... |