Rental Service
Farmer John realizes that the income he receives from milk production is insufficient to fund the growth of his farm, so to earn some extra money, he launches a cow-rental service, which he calls "USACOW" (pronounced "Use-a-cow").
Farmer John has n cows, each capable of producing some amount of milk every day. The m stores near FJ's farm each offer to buy a certain amount of milk at a certain price. Moreover, Farmer John's r neighboring farmers are each interested in renting a cow at a certain price.
Farmer John has to choose whether each cow should be milked or rented to a nearby farmer. Help him find the maximum amount of money he can make per day.
Input
The first line contains n (1 ≤ n ≤ 10^5
), m (1 ≤ m ≤ 10^5
) and r (1 ≤ r ≤ 10^5
). The next n lines each contain an integer c[i]
(1 ≤ c[i]
≤ 10^6
), indicating that Farmer John's i-th cow can produce c[i]
gallons of milk every day. The next m lines each contain two integers q[i]
and p[i]
(1 ≤ q[i]
, p[i]
≤ 10^6
), indicating that the i-th store is willing to buy up to q[i]
gallons of milk for p[i]
cents per gallon. Keep in mind that Farmer John can sell any amount of milk between zero and q[i]
gallons to a given store. The next r lines each contain an integer r[i]
(1 ≤ r[i]
≤ 10^6
), indicating that one of Farmer John's neighbors wants to rent a cow for r[i]
cents per day.
Output
The output should consist of one line containing the maximum profit Farmer John can make per day by milking or renting out each of his cows. Note that the output might be too large to fit into a standard 32-bit integer, so you may need to use a larger integer type like a "long long" in C/C++.
Example
Farmer John should milk cows #1 and #4, to produce 13 gallons of milk. He should completely fill the order for 10 gallons, earning 250 cents, and sell the remaining three gallons at 15 cents each, for a total of 295 cents of milk profits.
Then, he should rent out the other three cows for 250, 80 and 100 cents, to earn 430 more cents. (He should leave the request for a 40-cent rental unfilled.) This is a total of 725 cents of daily profit.