Editorial for CCO '23 P4 - Flip it and Stick it


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

The overall approach is to do casework on all possible T. In each case, we first characterize all the strings that do not contain T (call these good states). Based on this characterization, we then look for a measure of how far S is from a good state and a greedy algorithm that repeatedly brings S closer to a good state.

Formally, in each of the cases, we will find a function f(S) such that f(S)=0 at all good states, f(S)f(S)1 for all S,S where S is obtained from S by one reversal, and a greedy algorithm that finds an S from any non-good state S such that f(S)=f(S)1. It will then follow that f(S) is the answer for any string S.

We can reduce the number of cases by half by noting that the answer remains the same if all the bits in S and T are flipped, so we may WLOG let T1=0.

Subtask 1

We need to consider the case T=0.

A good state is when the string is composed of only 1s. Therefore the answer is 0 if S contains only 1s, and otherwise, the answer is 1.

Subtask 2

We need to consider the case T=01.

A good state is when the string is a block of consecutive 1s followed by a block of consecutive 0s. This encourages us to look at blocks of consecutive 1s, and we might conjecture that the answer is the number of blocks of consecutive 1s that are not at the beginning of S. Indeed, this number can decrease by at most 1 per reversal, and a greedy algorithm that looks for the first block of 1s that is not at the beginning and performs a reversal to combine it with the beginning (e.g. 11[00111]0111[11100]01 or [001]011[100]011) works.

Alternatively, the answer is just the number of times T=01 appears in S as a substring, which can be proven similarly.

Subtask 3

We need to consider the case T=00.

A good state is when the string does not contain any blocks of two or more consecutive 0s. If S has more 0s than the number of 1s plus 1, then the answer is 1 since no rearrangement of the characters of S is a good state.

Otherwise, the answer is the sum of (block size1) over all blocks of consecutive 0s. Whenever S is not a good state, there exists a substring 11 in S, and we can greedily perform a reversal to "cut off" a 0 from a block and "insert" it into this 11 (e.g. 00[01010111101]100[10111101010]1).

Alternatively, the answer is just the number of times T=00 appears in S as a substring if ((# 0s in S)(# 1s in S)+1), otherwise 1.

Subtask 4

We need to consider the cases T=001 and T=011. By reversing and flipping the bits of S and T, these cases are equivalent, so we will only describe T=011.

A good state is when the string has a prefix of consecutive 1s and no blocks of two or more consecutive 1s after that. The answer is the number of blocks of two or more consecutive 1s that are not in the prefix of 1s, and a greedy algorithm similar to T=01 can prove this.

Alternatively, the answer is just the number of times T=011 appears in S as a substring.

Subtask 5

We need to consider the cases T=010 and T=011. The case T=011 was solved in subtask 4, so we need to solve T=010.

A good state is when the string does not contain any blocks of exactly one consecutive 1. In one reversal, it is possible to "merge" up to 2 blocks of exactly one 1 (e.g. 01[011001]001[100110]0). Therefore, if S contains x blocks of exactly one consecutive 1, the answer is x2.

Alternatively, the answer is just the number of times T=010 appears in S as a substring divided by 2, rounded up.

Subtask 6

The remaining case is when T=000.

Similar to when T=00, a good state is when the string does not contain any blocks of three or more consecutive 0s. If S has more 0s than twice the number of 1s plus 2, then the answer is 1 since no rearrangement of the characters of S is a good state.

In this case, it might help to analyze how reversals behave on the blocks of 0s in S more closely. Suppose the 1s in S separate S into blocks of x1,,xk consecutive 0s, where some xi may be zero. Then a reversal takes any two xi,xj (where i<j), changes them to two new block sizes y,xi+xjy (where any 0yxi+xj is possible), and reverses the order of the blocks in between i and j. We can view x1,,xk as a multiset since the order is not important.

We can use blocks of size 1 to cut off pieces of size 1 from larger blocks, and we can also use blocks of size 0 to cut off pieces of size 2 from larger blocks. Intuitively, we should use the size 0 blocks to cut off pieces of size 2 from the largest blocks, since this is the most efficient, and only use size 1 blocks if necessary. This leads to the following greedy algorithm: while the largest block has size x>2, use a size 0 block if there is one (replace x,0 with x2,2), otherwise use a size 1 block (replace x,1 with x1,2).

The correctness of this greedy algorithm can be proven by finding an explicit function describing the answer. Without size 0 blocks, the answer would be xi>2(xi2). With arbitrarily many size 0 blocks, we can save up to xi>2x22 reversals by cutting off 2 at a time instead of 1. Thus, we conjecture that the answer is f(S)=xi>2(xi2)min(xi>2x22,# 0s among xi). It is straightforward to check that f can decrease by at most 1 per reversal, and the greedy algorithm above gives a way to always decrease f by 1 until a good state is reached, so this is indeed the answer.


Comments

There are no comments at the moment.