#Lutece0468. Finicky Grazers
Finicky Grazers
Migrated from Lutece 468 Finicky Grazers
All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.
Description
Farmer John's () cows (conveniently numbered ) graze in a straight line in their pasture whose length is () meters. Every morning, they place themselves at various unique integer locations along that line. FJ has observed that the cows produce more milk when the distance to the other grazing cows is maximized. Always the enterprising farmer, FJ wants to maximize the distance between each and every pair of neighboring cows by moving the cows to the right or left, but always with integer inter-cow spacing and never changing their order on the line. He spends minute to move a cow meter. When he's finished, he knows that the distances between every adjacent pair of cows will be one of two integers: or . Help FJ to calculate minimum time he needs to arrange the positions of the cows.
Input
Line : Two space-separated integers, and
Lines : Line describes cow with a single integer (range ) representing the position of a cow; is the left-most position. The list is sorted by position with the smallest position value first.
Output
Line : A single line with minimum time FJ needs to arrange the positions of the cows.
Samples
5 10
0
1
4
9
10
3
Note
Explanation of the sample:
The cows are arranged like this at the start:
1 2 - - 3 - - - - 4 5
The cows end up arranged like this:
1 - 2 - 3 - - 4 - - 5
Cow # moves from position to position ( meter). Cow # moves from position to position ( meters). Other cows don't move. Moving times are , which is the final answer.
Resources
USACO 2006 January Bronze