Editorial for Carnival Game


Remember to use this editorial only when stuck, and not to copy-paste code from it. Please be respectful to the problem author and editorialist.
Submitting an official solution before solving the problem yourself is a bannable offence.

Author: ThingExplainer

This problem can be solved with dynamic programming. First, define bi,j to represent the jth board on the ith layer for (1iN1), or the jth bucket on the ith layer for i=N.

Define dp[i][j] to be minimum cost to reach bi,j. Note that the ball can come from either bi1,j or bi1,j1. Define the cost cleft to be 0 if bi1,j1 is R or 1 if bi1,j1 is L. Similarly, define the cost cright to be 0 if bi1,j is L or 1 if bi1,j is R. This extra cost is due to the fact that if the left/right board on the previous layer does not direct the ball to the current board, we will have to flip it so that it does.

Our general transition goes something like this:

dp[i][j]=min(dp[i1][j1]+cleft,dp[i1][j]+cright)

Now, to find the maximum P, we can simply take max(tidp[N][i]) where (1iN).

However, how do we know exactly what boards we flipped throughout the course of our calculation?

The answer is to store the optimal paths taken in a backtracking array. Say bt[i][j] is 0 if the ball came from bi1,j1, or 1 if the ball came from bi1,j on some optimal path to bi,j. This can be calculated while we fill the dp matrix. If our maximum P happens when the ball lands in the bucket at index idx, we can start our backtracking from bt[N][idx] and move upwards to bi1,j or bi1,j1 depending on the state of bt[i][j].

If at any time, we move in some direction that contradicts the movement that the ball would have had if it landed on bi,j in the original input, we add bi,j to the list of flipped boards, which we output after we are done backtracking.


Comments

There are no comments at the moment.