Editorial for An Animal Contest 6 P2 - G-Pop


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.

Authors: andrewtam, julian33

Solution for 20%

Note that if X=max(rili+1), then we need exactly X distinct bands.

Solution for 50%

An example of an ordering that is valid is 1,2,3,,X,1,2,3,.

Solution for 100%

Let A be the plan that we output. For the remaining 50%, we must maximize the number of indices j (2jN) where Aj=Aj1. Let's call j good if we can do this. First, let's define fj as the minimal li such that lijri. If there is no i such that lijri, then fj=j. Observe that j is good if and only if fj=j. This is because if fj<j there exists some i such that lij1<jri. So, if we make Aj=Aj1, then there will be 2 identical bands playing within some [li,ri]. On the other hand, if fj=j, there clearly exists no i where j and j1 are in [li,ri]. Initially, set A1=1. Then, for each j (2jN), Aj=Aj1 if fj=j. Otherwise, Aj=Aj1+1, making sure that if Aj=X+1 we set it to 1.

Time Complexity: O(N)


Comments

There are no comments at the moment.