#D13172. Restorer Distance

    ID: 10954 Type: Default 1000ms 256MiB

Restorer Distance

Restorer Distance

You have to restore the wall. The wall consists of N pillars of bricks, the height of the i-th pillar is initially equal to h_{i}, the height is measured in number of bricks. After the restoration all the N pillars should have equal heights.

You are allowed the following operations:

  • put a brick on top of one pillar, the cost of this operation is A;
  • remove a brick from the top of one non-empty pillar, the cost of this operation is R;
  • move a brick from the top of one non-empty pillar to the top of another pillar, the cost of this operation is M.

You cannot create additional pillars or ignore some of pre-existing pillars even if their height becomes 0.

What is the minimal total cost of restoration, in other words, what is the minimal total cost to make all the pillars of equal height?

Input

The first line of input contains four integers N, A, R, M (1 ≤ N ≤ 10^{5}, 0 ≤ A, R, M ≤ 10^{4}) — the number of pillars and the costs of operations.

The second line contains N integers h_{i} (0 ≤ h_{i} ≤ 10^{9}) — initial heights of pillars.

Output

Print one integer — the minimal cost of restoration.

Examples

Input

3 1 100 100 1 3 8

Output

12

Input

3 100 1 100 1 3 8

Output

9

Input

3 100 100 1 1 3 8

Output

4

Input

5 1 2 4 5 5 3 6 5

Output

4

Input

5 1 2 2 5 5 3 6 5

Output

3

inputFormat

Input

The first line of input contains four integers N, A, R, M (1 ≤ N ≤ 10^{5}, 0 ≤ A, R, M ≤ 10^{4}) — the number of pillars and the costs of operations.

The second line contains N integers h_{i} (0 ≤ h_{i} ≤ 10^{9}) — initial heights of pillars.

outputFormat

Output

Print one integer — the minimal cost of restoration.

Examples

Input

3 1 100 100 1 3 8

Output

12

Input

3 100 1 100 1 3 8

Output

9

Input

3 100 100 1 1 3 8

Output

4

Input

5 1 2 4 5 5 3 6 5

Output

4

Input

5 1 2 2 5 5 3 6 5

Output

3

样例

3 1 100 100
1 3 8
12

</p>