답안 #602083

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
602083 2022-07-22T14:39:51 Z Soul234 Maja (COCI18_maja) C++14
110 / 110
578 ms 812 KB
#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 0 ms 596 KB Output is correct
2 Correct 0 ms 596 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 596 KB Output is correct
2 Correct 6 ms 596 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 596 KB Output is correct
2 Correct 8 ms 700 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 3 ms 596 KB Output is correct
2 Correct 4 ms 596 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 170 ms 688 KB Output is correct
2 Correct 10 ms 596 KB Output is correct
3 Correct 578 ms 788 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 31 ms 596 KB Output is correct
2 Correct 387 ms 780 KB Output is correct
3 Correct 526 ms 796 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 338 ms 748 KB Output is correct
2 Correct 467 ms 812 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 133 ms 688 KB Output is correct
2 Correct 129 ms 744 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 53 ms 680 KB Output is correct
2 Correct 23 ms 724 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 107 ms 728 KB Output is correct
2 Correct 25 ms 596 KB Output is correct