#Lutece0401. Cheapest Cost

Cheapest Cost

Migrated from Lutece 401 Cheapest Cost

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

baihacker chooses the easy mode and is borned in XX star. The lowest temperature of XX star is 00 degree and the highest is 10001000 degree.

The technology of XX star is so advanced that the relation department can predict the temperature of the coming 10001000 days. The temperature of each day is independent. When the temperature difference of two consecutive days is larger than KK, the people will be ill, so the relation department employ YY company to control the temperature such that no people will be ill for the temperature difference.

The cost of change the temperature SS degree of a day is S×SS\times S. When temperature difference of two consecutive days is DD, then YY company have to pay A×DA\times D for maintaining his honor.

As the CTO of Y company, you are to calculate the cheapest cost.

Input

The first line of the input is an integer TT which stands for the number of test cases. Then TT test cases follow.

The first line of each test case is 33 integers N,K,AN, K, A seperated by a space. Then NN integers seperated by a space in a line to represent the temperatures in the coming nn days.

constraints:

  • A,KA, K is in the range of [0,1000][0, 1000].
  • NN is in the range of [1,1000][1, 1000].
  • The temperature after adjusted can not be below 00 or higher than 10001000.
  • TT is no more than 150150.

Output

For each test case, output the cheapest cost in a single line. The cost is defined as the sum of changing the temperator and maintaining their honor.

Samples

2
1 1 1
1
3 1 10
1 2 3
0
2

Resources

10th SCU Programming Contest Final