2022: [USACO 2024 January Contest Gold] Problem 3. Nap Sort
题目描述
Bessie is trying to sort an array of integers using her own sorting algorithm. She has a pile of integers
that she will put in a separate array in sorted order. She repeatedly finds the minimum integer in her pile, removes it, and adds it to the end of the array. It takes Bessie seconds to find the minimum integer in a pile of integers.
Farmer John instructed some of the other cows in the farm to help Bessie with her task, but they are quite lazy, so Bessie uses that to her advantage. She divides the integers into two piles: Bessie pile and Helper pile. For every integer in Bessie's pile, she performs her algorithm as normal. For every integer in the helper pile, she assigns it to a different helper cow. Farmer John has a large farm, so Bessie can get as many helper cows as she wants. If a helper receives the integer , Bessie instructs that cow to nap for seconds, and add their integer to the end of the array immediately when they wake up. If Bessie and a helper add an integer to the array at the same time, Bessie's integer will get added first since she is the leader. If more than one helper gets assigned the same integer, they will add copies of that integer to the array at the same time.
Help Bessie divide her integers so that the final array is sorted and the time it takes to sort the array is minimized.
输入
Each test case is formatted as follows:
The first line of each test case contains the number of integers in Bessie's array.
The next line of each test case contains , the integers that Bessie is sorting. The same integer may appear multiple times.
It is guaranteed that the sum of over all tests does not exceed .
输出
For each test case, output the minimum time to sort the array on a new line, if Bessie divides her integers optimally.
样例输入
4
5
1 2 4 5 100000000000
5
17 53 4 33 44
4
3 5 5 5
6
2 5 100 1 4 5
样例输出
6
15
5
6
提示
In the first example, Bessie can assign to helpers and leave for herself. [expand to see graph]
Time | Event -----+---------------------- 1 | Helper adds 1 2 | Helper adds 2 3 | Bessie adds 4 5 | Bessie adds 5 6 | Bessie adds 10^{11}
In the second example, the best Bessie can do is sort everything by herself. One division that does *not* work is for Bessie to assign to a helper and the rest to herself because Bessie will end up adding to the array before the helper adds to the array.
In the third example, Bessie can assign all the integers to helpers.
In the fourth example, Bessie can assign to helpers and leave to herself. [expand to see graph]
Time | Event -----+------------------ 1 | Helper adds 1 3 | Bessie adds 2 4 | Helper adds 4 5 | Bessie adds 5 5 | Helper adds 5 6 | Bessie adds 100
SCORING:
- Input 2:
- Inputs 3-5:
- Inputs 6-8:
- Inputs 9-11: No additional constraints.