Editorial for DMOPC '22 Contest 2 P5 - Beautiful Bins


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: 4fecta

First of all, note that since we have Ai1 for all i, any set of moves that results in a positive B will always have an ordering of the moves such that none of the quantities ever go negative. Thus, the only thing that matters is the number of each move performed.

To reach a solution, consider maintaining the following two quantities at each index i:

  • li:= the number of balls that are moved from the range [i,N] to the range [1,i1].
  • ri:= the number of balls that are moved from the range [1,i1] to the range [i,N].

Note that by definition, we must have li,ri0, and furthermore rili=k=1i1(AkBk) since the number of balls in each segment must be the same. Initially, l2=B1A1 and r2=0. To obtain the values of li and ri for larger i, consider performing s moves centered at index i and x moves that move a ball from [1,i1] to i. Clearly s should be no larger than li and x should be no larger than ri, and we must also have Ai2s+xBi since there is no other way to get rid of any excess balls at index i.

After these moves are determined, we have nice formulas for li+1 and ri+1:

  • li+1=li+sx+BiAi
  • ri+1=ri+sx

Note that we add s to ri since we introduce s new balls that move from i to [i+1,N], and we subtract x since we no longer consider the x balls that move from [1,i1] to i. The formula for li+1 can be derived in a similar manner.

If we consider all possible values of s and x at every index, then it is only possible if we can reach lN=0 and rN=BNAN in the end. The issue, however, is that this is far too slow on any reasonably sized input. To speed the solution up, note that the possible values of li and ri always form a consecutive interval of integers. Thus, it suffices to only track the minimum and maximum possible values of li and ri at each index. These may be computed greedily in O(1) time each, which is fast enough for the given constraints.

Time Complexity: O(N)

Credit goes to azeng for discovering this elegant solution.


Comments

There are no comments at the moment.