# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
86113 | Shtef | Maja (COCI18_maja) | C++14 | 1573 ms | 1148 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <cstdlib>
#include <cstdio>
#include <cstring>
using namespace std;
typedef long long ll;
int n, m, x1, y1, k;
ll dp[5][105][105], c[105][105], sol;
const ll inf = 1e15;
const int dx[4] = {-1, 0, 1, 0};
const int dy[4] = {0, 1, 0, -1};
int main ()
{
scanf("%d %d %d %d %d", &n, &m, &x1, &y1, &k);
for(int i = 1 ; i <= n ; ++i){
for(int j = 1 ; j <= m ; ++j){
scanf("%lld", &c[i][j]);
}
}
for(int i = 1 ; i <= n ; ++i){
for(int j = 1 ; j <= m ; ++j){
for(int v = 0 ; v < 5 ; ++v){
dp[v][i][j] = -inf;
}
}
}
for(int i = 0 ; i < 5 ; ++i){
dp[i][x1][y1] = 0;
}
ll maxi = 0;
for(int i = 1 ; i <= n ; ++i){
for(int j = 1 ; j <= m ; ++j){
for(int w = 0 ; w < 4 ; ++w){
int nx = i + dx[w];
int ny = j + dy[w];
if(nx <= 0 || nx > n || ny < 0 || ny > m)
continue;
maxi = max(maxi, c[i][j] + c[nx][ny]);
}
}
}
for(int i = 1 ; i <= min(k, (n * m) / 2) ; ++i){
for(int j = 1 ; j <= n ; ++j){
for(int v = 1 ; v <= m ; ++v){
for(int w = 0 ; w < 4 ; ++w){
int nx = j + dx[w];
int ny = v + dy[w];
if(nx <= 0 || nx > n || ny <= 0 || ny > m)
continue;
dp[i % 5][nx][ny] = max(dp[i % 5][nx][ny], dp[(i - 1 + 5) % 5][j][v] + c[nx][ny]);
if(dp[i % 5][nx][ny] - dp[(i - 2 + 5) % 5][nx][ny] == dp[(i - 2 + 5) % 5][nx][ny] - dp[(i - 4 + 5) % 5][nx][ny]){
if(dp[i % 5][nx][ny] - dp[(i - 2 + 5) % 5][nx][ny] > maxi)
continue;
sol = max(sol, 2LL * dp[(i - 4 + 5) % 5][nx][ny] + (ll)((k - 2 * (i - 4)) / 2) * (dp[i % 5][nx][ny] - dp[(i - 2 + 5) % 5][nx][ny]) - c[nx][ny]);
}
}
}
}
}
printf("%lld\n", (k <= (n * m) / 2 ? dp[k % 5][x1][y1] : sol));
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... |
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |