#P10620. [ICPC 2013 WF] Low Power

[ICPC 2013 WF] Low Power

题目描述

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 2nk 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 11. 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,6,1, 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.

输入格式

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 k(2nk106)k (2nk \leq 10^6). The second line contains 2nk2nk integers pip_i specifying the power outputs of the batteries (1pi109)(1 \leq p_i \leq 10^9).

输出格式

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.

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