#Lutece0246. Post Office

Post Office

Migrated from Lutece 246 Post Office

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

There is a straight highway with villages alongside the highway. The highway is represented as an integer axis, and the position of each village is identified with a single integer coordinate. There are no two villages in the same position. The distance between two positions is the absolute value of the difference of their integer coordinates.

Post offices will be built in some, but not necessarily all of the villages. A village and the post office in it have the same position. For building the post offices, their positions should be chosen so that the total sum of all distances between each village and its nearest post office is minimum.

You are to write a program which, given the positions of the villages and the number of post offices, computes the least possible sum of all distances between each village and its nearest post office.

Input

Your program is to read from standard input. The first line contains two integers: the first is the number of villages VV, and the second is the number of post offices P,1PV1000P, 1 \leq P \leq V \leq 1000. The second line contains VV integers in increasing order. These VV integers are the positions of the villages. For each position XX it holds that 1X100001 \leq X \leq 10000.

Output

The first line contains one integer SS, which is the sum of all distances between each village and its nearest post office.

Samples

10 5
1 2 3 6 7 9 11 22 44 50
9

Note

The data used in this problem is unofficial data prepared by StephYDX. So any mistake here does not imply mistake in the offcial judge data.

Resources

IOI 2000