CF BUDDY
← Problems·

1659C · Line Empire

1500 · binary search, brute force, dp

Problem: You are an ambitious king who wants to be the Emperor of The Reals. But to do that, you must first become Emperor of The Integers.

Consider a number axis. The capital of your empire is initially at 00. There are nn unconquered kingdoms at positions 0<x1<x2<<xn0<x_1<x_2<\ldots<x_n. You want to conquer all other kingdoms.

There are two actions available to you:

  • You can change the location of your capital (let its current position be c1c_1) to any other conquered kingdom (let its position be c2c_2) at a cost of ac1c2a\cdot |c_1-c_2|.
  • From the current capital (let its current position be c1c_1) you can conquer an unconquered kingdom (let its position be c2c_2) at a cost of bc1c2b\cdot |c_1-c_2|. You cannot conquer a kingdom if there is an unconquered kingdom between the target and your capital.

Note that you cannot place the capital at a point without a kingdom. In other words, at any point, your capital can only be at 00 or one of x1,x2,,xnx_1,x_2,\ldots,x_n. Also note that conquering a kingdom does not change the position of your capital.

Find the minimum total cost to conquer all kingdoms. Your capital can be anywhere at the end.

Input Format: The first line contains a single integer tt (1t10001 \le t \le 1000)  — the number of test cases. The description of each test case follows.

The first line of each test case contains 33 integers nn, aa, and bb (1n21051 \leq n \leq 2 \cdot 10^5; 1a,b1051 \leq a,b \leq 10^5).

The second line of each test case contains nn integers x1,x2,,xnx_1, x_2, \ldots, x_n (1x1<x2<<xn1081 \leq x_1 < x_2 < \ldots < x_n \leq 10^8).

The sum of nn over all test cases does not exceed 21052 \cdot 10^5.

Output Format: For each test case, output a single integer  — the minimum cost to conquer all kingdoms.

Note: Here is an optimal sequence of moves for the second test case:

  1. Conquer the kingdom at position 11 with cost 3(10)=33\cdot(1-0)=3.
  2. Move the capital to the kingdom at position 11 with cost 6(10)=66\cdot(1-0)=6.
  3. Conquer the kingdom at position 55 with cost 3(51)=123\cdot(5-1)=12.
  4. Move the capital to the kingdom at position 55 with cost 6(51)=246\cdot(5-1)=24.
  5. Conquer the kingdom at position 66 with cost 3(65)=33\cdot(6-5)=3.
  6. Conquer the kingdom at position 2121 with cost 3(215)=483\cdot(21-5)=48.
  7. Conquer the kingdom at position 3030 with cost 3(305)=753\cdot(30-5)=75.

The total cost is 3+6+12+24+3+48+75=1713+6+12+24+3+48+75=171. You cannot get a lower cost than this.

Sample Cases

Case 1

Input

4
5 2 7
3 5 12 13 21
5 6 3
1 5 6 21 30
2 9 3
10 15
11 27182 31415
16 18 33 98 874 989 4848 20458 34365 38117 72030

Output

173
171
75
3298918744

Similar problems

00:00:00
Loading editor…
Welcome! I'm your coding tutor for this problem. Use the chips below to reveal stored hints or get AI feedback on your code. I'll guide you step by step — never giving away the solution.

Sign in to unlock AI tutor feedback