Mirko's newest math homework assignment is a very difficult one! Given a sequence, , of integers, remove exactly of them from the sequence. Let be the largest difference of any two remaining numbers in the sequence, and the smallest such difference. Select the integers to be removed from in such a way that the sum is the smallest possible. Mirko isn't very good at math, so he has asked you to help him!
Input Specification
The first line of input contains two positive integers, and .
The second line of input contains space-separated positive integers – the sequence .
Output Specification
The first and only line of output must contain the smallest possible sum .
Sample Input 1
5 2
-3 -2 3 8 6
Sample Output 1
7
Sample Input 2
6 2
-5 8 10 1 13 -1
Sample Output 2
13
Sample Input 3
6 3
10 2 8 17 2 17
Sample Output 3
6
Comments