Submission #602085

# Submission time Handle Problem Language Result Execution time Memory
602085 2022-07-22T14:41:08 Z Soul234 Maja (COCI18_maja) C++14
110 / 110
564 ms 756 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;
}
# Verdict Execution time Memory Grader output
1 Correct 1 ms 596 KB Output is correct
2 Correct 1 ms 596 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 3 ms 684 KB Output is correct
2 Correct 6 ms 692 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 2 ms 596 KB Output is correct
2 Correct 8 ms 692 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 5 ms 688 KB Output is correct
2 Correct 3 ms 596 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 149 ms 688 KB Output is correct
2 Correct 12 ms 596 KB Output is correct
3 Correct 563 ms 724 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 31 ms 596 KB Output is correct
2 Correct 375 ms 720 KB Output is correct
3 Correct 564 ms 756 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 327 ms 744 KB Output is correct
2 Correct 480 ms 744 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 120 ms 692 KB Output is correct
2 Correct 113 ms 728 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 46 ms 596 KB Output is correct
2 Correct 24 ms 596 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 103 ms 728 KB Output is correct
2 Correct 22 ms 692 KB Output is correct