# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
780798 | Andrey | Maxcomp (info1cup18_maxcomp) | C++14 | 99 ms | 20640 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 main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int n,m,a,b,ans = 0;
cin >> n >> m;
int haha[n][m];
for(int i = 0; i < n; i++) {
for(int j = 0; j < m; j++) {
cin >> haha[i][j];
}
}
pair<int,int> dp[n][m];
for(int i = 0; i < n; i++) {
for(int j = 0; j < m; j++) {
dp[i][j] = {haha[i][j]+i+j,-haha[i][j]+i+j};
if(i > 0) {
dp[i][j] = {max(dp[i][j].first,dp[i-1][j].first),max(dp[i][j].second,dp[i-1][j].second)};
}
if(j > 0) {
dp[i][j] = {max(dp[i][j].first,dp[i][j-1].first),max(dp[i][j].second,dp[i][j-1].second)};
}
ans = max(ans,dp[i][j].first-haha[i][j]-i-j);
ans = max(ans,dp[i][j].second+haha[i][j]-i-j);
}
}
for(int i = 0; i < n; i++) {
for(int j = 0; j < m/2; j++) {
swap(haha[i][j],haha[i][m-j-1]);
}
}
for(int i = 0; i < n; i++) {
for(int j = 0; j < m; j++) {
dp[i][j] = {haha[i][j]+i+j,-haha[i][j]+i+j};
if(i > 0) {
dp[i][j] = {max(dp[i][j].first,dp[i-1][j].first),max(dp[i][j].second,dp[i-1][j].second)};
}
if(j > 0) {
dp[i][j] = {max(dp[i][j].first,dp[i][j-1].first),max(dp[i][j].second,dp[i][j-1].second)};
}
ans = max(ans,dp[i][j].first-haha[i][j]-i-j);
ans = max(ans,dp[i][j].second+haha[i][j]-i-j);
}
}
cout << ans-1;
return 0;
}
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... |