CF1659C.Line Empire

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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.

输入格式

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 .

输出格式

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

输入输出样例

  • 输入#1

    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

    输出#1

    173
    171
    75
    3298918744

说明/提示

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.

首页