#P1346C. Spring Cleaning
Spring Cleaning
No submission language available for this problem.
Description
Tanya wants to organize her bookcase. There are bookshelves in the bookcase, the -th bookshelf contains books on it. Tanya will be satisfied if each bookshelf contains no more than books.
Tanya can do one of the two following operations to achieve her goal:
- Choose exactly one bookshelf and put all the books from it in the storage room (i. e. choose some and assign ). During this operation she spends seconds.
- Take all books from all bookshelves and distribute them between all bookshelves evenly (the definition of the term is given below). During this operation she spends seconds.
Consider the sequence of integers. Then its even distribution is such a sequence of integers that the sum of equals the sum of and the value is the minimum possible.
For example, if the array then its even distribution is . If then its even distribution is (or any permutation of this array).
Your task is to find the minimum number of seconds Tanya has to spend to obtain the bookcase with no more than books on each bookshelf.
The first line of the input contains one integer () — the number of test cases. Then test cases follow.
The first line of the test case contains four integers and () — the number of bookshelves, the maximum required number of books on each bookshelf and the number of seconds Tanya spends during the first and the second operation respectively.
The second line of the test case contains integers (), where is the number of books on the -th bookshelf.
It is guaranteed that the sum of over all test cases does not exceed ().
For each test case, print the answer — the minimum number of seconds Tanya has to spend to obtain the bookcase with no more than books on each bookshelf.
Input
The first line of the input contains one integer () — the number of test cases. Then test cases follow.
The first line of the test case contains four integers and () — the number of bookshelves, the maximum required number of books on each bookshelf and the number of seconds Tanya spends during the first and the second operation respectively.
The second line of the test case contains integers (), where is the number of books on the -th bookshelf.
It is guaranteed that the sum of over all test cases does not exceed ().
Output
For each test case, print the answer — the minimum number of seconds Tanya has to spend to obtain the bookcase with no more than books on each bookshelf.
Samples
Note
In the first test case of the example, it's optimal to use the first operation on the fifth bookshelf. So the array becomes .
In the second test case of the example, it's optimal to use the first operation on the second bookshelf and then use the second operation. So the array becomes .
In the third test case of the example, it's optimal to use the second operation. So the array becomes .
In the fourth test case of the example, it's optimal to use the first operation on the first and the second bookshelves. So the array becomes .
In the fifth test case of the example, it's optimal to use the second operation. So the array becomes .