Editorial for Yet Another Contest 9 P4 - Grid Push
Submitting an official solution before solving the problem yourself is a bannable offence.
Author:
Subtask 1 Hint
How many unique grids exist such that the last operation used was of typeSubtask 2 Hint
In this subtask, the cases from SubtaskSubtask 3 Hint
The dp transition should look very familiar. Does it remind you of any well-known structure?Full Solution
We'll start by introducing some notation. Let
Consider the following dp state:
As our base case, if
Suppose that we are considering the state
Suppose that the last operation was of type
If there were no overlap between the two cases, then we would have
Proof of Claim
Suppose that the last operation could be either of typeWe can optimize this transition by noticing that it is nearly identical to the one used in creating Pascal's triangle, and therefore, we can apply binomial coefficients. The details are left as an exercise for the reader.
Time Complexity:
Comments