Editorial for Yet Another Contest 6 P5 - No More Coyotes
Submitting an official solution before solving the problem yourself is a bannable offence.
Author:
Subtask 1
This subtask was reserved for an inefficient implementation of subtask 2.
Time complexity:
Subtask 2
We can consider each sheep as having two halfplanes. The first halfplane is either
The key observation is that the rotation move simply toggles one of the two halfplanes of a sheep. This means that the
There are only two cases. The first case is where every sheep ends up at the same location. In this case, the fields of the view of the sheep are irrelevant, and all that matters is the positions of the sheep. The total number of moves is easy to calculate, given that it is well known that the optimal final location of the sheep is the median of all positions.
The second case is where there are two distinct final locations of the sheep. Let the final locations of the sheep be
Sort the sheep by their original position, breaking ties by prioritising sheep with the field of view
Thus it suffices to iterate over all prefixes of the sheep, and maintain the current sum of distances travelled to reach the medians of the prefix and suffix. Don't forget to keep track of the number of rotation moves required. The current sums of distances for both the prefix and suffix can be maintained in multiple different ways, the easiest of which is to notice that when the
Time complexity:
Comments