#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
const int maxn = 110, maxs = 1e4+10;
ll n, m, a, b, mat[maxn][maxn], k;
struct pt
{
ll f;
ll sf;
bool operator > (const pt &k) const{
if(f != k.f) return f > k.f;
return sf >= k.sf;
}
}dp[maxn][maxn][2];
pt solve()
{
int mod = 0;
for(int t = 1 ; t <= min(k, (ll)10000) ; t++)
{
mod ^= 1;
for(int i = 1 ; i <= n ; i++)
{
for(int j = 1 ; j <= m ; j++)
{
if(dp[i-1][j][mod^1] > dp[i+1][j][mod^1] and dp[i-1][j][mod^1] > dp[i][j-1][mod^1] and dp[i-1][j][mod^1] > dp[i][j+1][mod^1])
{
dp[i][j][mod] = dp[i-1][j][mod^1];
if(mat[i][j]+mat[i-1][j] > dp[i-1][j][mod^1].sf) dp[i][j][mod].sf = mat[i][j]+mat[i-1][j];
}
else if(dp[i+1][j][mod^1] > dp[i-1][j][mod^1] and dp[i+1][j][mod^1] > dp[i][j-1][mod^1] and dp[i+1][j][mod^1] > dp[i][j+1][mod^1])
{
dp[i][j][mod] = dp[i+1][j][mod^1];
if(mat[i][j]+mat[i+1][j] > dp[i+1][j][mod^1].sf) dp[i][j][mod].sf = mat[i][j]+mat[i+1][j];
}
else if(dp[i][j-1][mod^1] > dp[i-1][j][mod^1] and dp[i][j-1][mod^1] > dp[i+1][j][mod^1] and dp[i][j-1][mod^1] > dp[i][j+1][mod^1])
{
dp[i][j][mod] = dp[i][j-1][mod^1];
if(mat[i][j]+mat[i][j-1] > dp[i][j-1][mod^1].sf) dp[i][j][mod].sf = mat[i][j]+mat[i][j-1];
}
else
{
dp[i][j][mod] = dp[i][j+1][mod^1];
if(mat[i][j]+mat[i][j+1] > dp[i][j+1][mod^1].sf) dp[i][j][mod].sf = mat[i][j]+mat[i][j+1];
}
if(dp[i][j][mod].f != -1) dp[i][j][mod].f += mat[i][j];
}
}
}
return dp[a][b][mod];
}
int main()
{
cin >> n >> m >> a >> b >> k;
for(int i = 1 ; i <= n ; i++)
{
for(int j = 1 ; j <= m ; j++)
{
cin >> mat[i][j];
}
}
memset(dp, -1, sizeof dp);
dp[a][b][0].f = 0;
pt resp = solve();
//cout << resp.f << endl;
if(k <= 10000) cout << resp.f << endl;
else cout << (ll)resp.f + (ll)(resp.sf)*((ll)k-10000)/2 << endl;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
768 KB |
Output is correct |
2 |
Correct |
2 ms |
640 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
768 KB |
Output is correct |
2 |
Correct |
8 ms |
768 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
768 KB |
Output is correct |
2 |
Correct |
9 ms |
768 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
7 ms |
768 KB |
Output is correct |
2 |
Correct |
4 ms |
640 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
156 ms |
888 KB |
Output is correct |
2 |
Correct |
10 ms |
768 KB |
Output is correct |
3 |
Correct |
517 ms |
896 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
28 ms |
760 KB |
Output is correct |
2 |
Correct |
423 ms |
888 KB |
Output is correct |
3 |
Correct |
604 ms |
896 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
361 ms |
896 KB |
Output is correct |
2 |
Correct |
466 ms |
1024 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
115 ms |
888 KB |
Output is correct |
2 |
Correct |
109 ms |
816 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
39 ms |
760 KB |
Output is correct |
2 |
Correct |
20 ms |
768 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
91 ms |
768 KB |
Output is correct |
2 |
Correct |
19 ms |
768 KB |
Output is correct |