Editorial for Yet Another Contest 1 P1 - Mixed Doubles
Submitting an official solution before solving the problem yourself is a bannable offence.
Author:
Subtask 1
In this editorial, let us refer to training a person and increment their skill level as a 'move'.
Let
First, let's say that we have already chosen which people we will train, so we know the final skill level of each person. How can we determine the optimal pairing of the players? Applying the rearrangement inequality, we can see that
Time complexity:
Subtask 2
Note that the order of our moves doesn't matter. Let's say that we have already paired the men and women optimally, and we have already chosen the final skill levels of all the men - all that's left is to allocate the remaining minutes to the women. Every time we train a woman,
By symmetry, if the skill levels of all of the women have been determined, and the remaining moves need to be allocated to the men, it would be optimal to allocate all remaining moves to the partner of the most skilled woman. Combining these observations, we see that there always exists an optimal solution where we only train the man with the highest initial skill level, and the woman with the highest initial skill level. (This also relies on the fact that if we only train the most skilled man, then that man will always remain the most skilled man, with the same being true for the women.)
Therefore, we have reduced the original problem to the following problem:
Given two sequences initially sorted in descending order,
As
For subtask 2, since
Time complexity:
Subtask 3
Whenever we increment
To maximise
We can't explicitly simulate performing each move one at a time, so we will instead rely on casework.
Without loss of generality, we can assume
- If
, then we perform all our moves incrementing . - Otherwise, increment
by so that . Then, we can perform half of the remaining moves incrementing (rounding up or down if necessary), and the rest of the moves incrementing .
Time complexity:
Comments