Editorial for Yet Another Contest 9 P4 - Grid Push


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: andrewtam

Subtask 1 Hint How many unique grids exist such that the last operation used was of type 1? What about type 2? Do the cases ever overlap?
Subtask 2 Hint In this subtask, the cases from Subtask 1 do overlap. Think very carefully about when this happens.
Subtask 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 Si,j represent the subgrid of G which spans rows 1 to i and columns 1 to j. Si,j represents an empty grid if i=0 or j=0.

Consider the following dp state:

  • dp[i][j] = the number of ways to fill Si,j
  • As our base case, if i=0 or j=0, then Si,j is an empty grid and there is only one way to fill it, so dp[i][j]=1. In all other cases, we have 1i,jN.

    Suppose that we are considering the state dp[i][j]. Note that, intuitively, we only care about the prefix a1,...,ai of A and b1,...,bj of B, since any other elements would never appear in Si,j.

    Suppose that the last operation was of type 1. The 1st column of Si,j is fixed, so the number of ways to fill Si,j would be equal to dp[i][j1]. Similarly, if the last operation was of type 2, then the 1st row of Si,j is fixed, so the number of ways to fill Si,j would be equal to dp[i1][j].

    If there were no overlap between the two cases, then we would have dp[i][j]=dp[i][j1]+dp[i1][j]. We claim that the only time that the overlap does happen, we also have a1=...=ai=b1=...=bj, so we can write dp[i][j]=1.

    Proof of Claim Suppose that the last operation could be either of type 1 or type 2 and we would get the same grid for Si,j. Consider the sequence of operations used to create the grid. Suppose that some positive number of type 1 operations were performed after a type 2 operation. Then the first row of Si,j would have values A1,...,A1,B1,...,Bm for some m (possibly 0). Equating this sequence elementwise with the sequence B1,...,Bj (which we get if the last operation was of type 2) gives us Bk=A1 for all 1kj. We can apply the same logic to get Ak=B1 for all 1ki, and we are done.

    We 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: O(N)


    Comments

    There are no comments at the moment.