#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 NN (1N10,0001\leq N\leq 10,000) cows (conveniently numbered 1N1\cdots N) graze in a straight line in their pasture whose length is L+1L+1 (NL100,000N\leq L\leq 100,000) 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 11 minute to move a cow 11 meter. When he's finished, he knows that the distances between every adjacent pair of cows will be one of two integers: DD or D+1D+1. Help FJ to calculate minimum time he needs to arrange the positions of the cows.

Input

Line 11: Two space-separated integers, NN and LL

Lines 2N+12\cdots N+1: Line i+1i+1 describes cow ii with a single integer (range 0L0\cdots L) representing the position of a cow; 00 is the left-most position. The list is sorted by position with the smallest position value first.

Output

Line 11: 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 #22 moves from position 11 to position 22 (11 meter). Cow #44 moves from position 99 to position 77 (22 meters). Other cows don't move. Moving times are 1+2=31+2=3, which is the final answer.

Resources

USACO 2006 January Bronze