Editorial for An Animal Contest 4 P4 - Reindeer Racing
Submitting an official solution before solving the problem yourself is a bannable offence.
Author:
Subtask 1
Observe that we should try to minimize the number of bananas that we need to throw. If it is possible for the reindeer in lane
The casework breaks down as such:
If
If
. In this case, we cannot cause any collisions, and therefore the reindeer in lane will win.- There does not exist any
where . No matter how many collisions we cause, the baton will never reach the reindeer in lane .
Otherwise, it suffices to throw a single banana at the reindeer in lane
Time Complexity:
Subtask 2
While still considering cases present in the previous subtask, we should also consider cases where
As observed in Subtask 1, we should try to minimize the number of bananas we throw. Thus, the number of bananas
If
The reindeer in lane -1
.
At this point, we can solve the problem with
- Make the reindeer in lane
collide at . - Make all other reindeer collide at
. - Fill from left to right, (up/down filling order doesn't matter). Once we pass
, do not make the reindeer in lane collide with any hurdles.
Time Complexity:
Comments