CF2004C.Splitting Items

传统题 时间 2000 ms 内存 256 MiB 5 尝试 1 已通过 1 标签

Splitting Items

Alice and Bob have nn items they'd like to split between them, so they decided to play a game. All items have a cost, and the ii-th item costs aia_i. Players move in turns starting from Alice.

In each turn, the player chooses one of the remaining items and takes it. The game goes on until no items are left.

Let's say that AA is the total cost of items taken by Alice and BB is the total cost of Bob's items. The resulting score of the game then will be equal to ABA - B.

Alice wants to maximize the score, while Bob wants to minimize it. Both Alice and Bob will play optimally.

But the game will take place tomorrow, so today Bob can modify the costs a little. He can increase the costs aia_i of several (possibly none or all) items by an integer value (possibly, by the same value or by different values for each item). However, the total increase must be less than or equal to kk. Otherwise, Alice may suspect something. Note that Bob can't decrease costs, only increase.

What is the minimum possible score Bob can achieve?

Input

The first line contains a single integer tt (1t50001 \le t \le 5000) — the number of test cases. Then tt cases follow.

The first line of each test case contains two integers nn and kk (2n21052 \le n \le 2 \cdot 10^5; 0k1090 \le k \le 10^9) — the number of items and the maximum total increase Bob can make.

The second line of each test case contains nn integers a1,a2,,ana_1, a_2, \dots, a_n (1ai1091 \le a_i \le 10^9) — the initial costs of the items.

It's guaranteed that the sum of nn over all test cases doesn't exceed 21052 \cdot 10^5.

Output

For each test case, print a single integer — the minimum possible score ABA - B after Bob increases the costs of several (possibly none or all) items.

Note

In the first test case, Bob can increase a1a_1 by 55, making costs equal to [6,10][6, 10]. Tomorrow, Alice will take 1010 and Bob will take 66. The total score will be equal to 106=410 - 6 = 4, and it's the minimum possible.

In the second test case, Bob can't change costs. So the score will be equal to (15+10)12=13(15 + 10) - 12 = 13, since Alice will take 1515, Bob will take 1212, and Alice — 1010.

In the third test case, Bob, for example, can increase a1a_1 by 11, a2a_2 by 33, and a3a_3 by 22. The total change is equal to 1+3+261 + 3 + 2 \le 6 and costs will be equal to [4,4,4,4][4, 4, 4, 4]. Obviously, the score will be equal to (4+4)(4+4)=0(4 + 4) - (4 + 4) = 0.

In the fourth test case, Bob can increase a1a_1 by 33, making costs equal to [9,9][9, 9]. The score will be equal to 99=09 - 9 = 0.

Samples

4
2 5
1 10
3 0
10 15 12
4 6
3 1 2 4
2 4
6 9
4
13
0
0

在线编程 IDE

建议全屏模式获得最佳体验