# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
780798 | Andrey | Maxcomp (info1cup18_maxcomp) | C++14 | 99 ms | 20640 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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;
}
컴파일 시 표준 에러 (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... |