ICPC 2013 · Problem F · Low Power

37th ICPC · Saint Petersburg, Russia

Statement

Time Limit: 4 seconds

You are building advanced chips for machines. Making the chips is easy, but the power supply turns out to be an issue since the available batteries have varied power outputs.

Consider the problem of nn machines, each with two chips, where each chip is powered by kk batteries. Surprisingly, it does not matter how much power each chip gets, but a machine works best when its two chips have power outputs as close as possible. The power output of a chip is simply the smallest power output of its kk batteries.

You have a stockpile of 2nk2nk batteries that you want to assign to the chips. It might not be possible to allocate the batteries so that in every machine both chips have equal power outputs, but you want to allocate them so that the differences are as small as possible. To be precise, you want to tell your customers that in all machines the difference of power outputs of the two chips is at most dd, and you want to make dd as small as possible. To do this you must determine an optimal allocation of the batteries to the machines.

Consider Sample Input 1. There are 22 machines, each requiring 33 batteries per chip, and a supply of batteries with power outputs 1,2,3,4,5,6,7,8,9,10,11,121,2,3,4,5,6,7,8,9,10,11,12. You can, for instance, assign the batteries with power outputs 1,3,51,3,5 to one chip, those with power 2,4,122,4,12 to the other chip of the same machine, those with power 6,8,96,8,9 to the third chip, and those with power 7,10,117,10,11 to the fourth. The power outputs of the chips are 1,2,61,2,6, and 77, respectively, and the difference between power outputs is 11 in both machines. Note that there are many other ways to achieve this result.

Input

The input consists of a single test case. A test case consists of two lines. The first line contains two positive integers: the number of machines nn and the number of batteries per chip kk (2nk1062nk \le 10^{6}). The second line contains 2nk2nk integers pip_{i} specifying the power outputs of the batteries (1pi1091\le pi \le 10^{9}).

Output

Display the smallest number dd such that you can allocate the batteries so that the difference of power outputs of the two chips in each machine is at most dd.

Sample Input 1

2 3
1 2 3 4 5 6 7 8 9 10 11 12

Sample Output 1

1

Sample Input 2

2 2
3 1 3 3 3 3 3 3

Sample Output 2

2

ACM-ICPC World Finals 2013 Problem F: Low Power

No official solution in the source collection.