#5339. Problem 3. Landscaping

0

Problem 3. Landscaping

Problem 3. Landscaping

USACO 2016 US Open Contest, Platinum

Farmer John is building a nicely-landscaped garden, and needs to move a large amount of dirt in the process.

The garden consists of a sequence of NN flowerbeds (1N100,0001 \leq N \leq 100,000), where flowerbed ii initially contains AiA_i units of dirt. Farmer John would like to re-landscape the garden so that each flowerbed ii instead contains BiB_i units of dirt. The AiA_i's and BiB_i's are all integers in the range 0100 \ldots 10.

To landscape the garden, Farmer John has several options: he can purchase one unit of dirt and place it in a flowerbed of his choice for XX units of money. He can remove one unit of dirt from a flowerbed of his choice and have it shipped away for YY units of money. He can also transport one unit of dirt from flowerbed ii to flowerbed jj at a cost of ZZ times ij|i-j|. Please compute the minimum total cost for Farmer John to complete his landscaping project.

INPUT FORMAT (file landscape.in):

The first line of input contains NN, XX, YY, and ZZ (0X,Y108;0Z10000 \leq X, Y \le 10^8; 0 \le Z \leq 1000). Line i+1i+1 contains the integers AiA_i and BiB_i.

OUTPUT FORMAT (file landscape.out):

Please print the minimum total cost FJ needs to spend on landscaping.

SAMPLE INPUT:


4 100 200 1
1 4
2 3
3 2
4 0

SAMPLE OUTPUT:


210

Note that this problem has been asked in a previous USACO contest, at the silver level; however, the limits in the present version have been raised considerably, so one should not expect many points from the solution to the previous, easier version.

Problem credits: Brian Dean