A921.Rental Service--Silver

普及+/提高

USACO

通过率:0%

时间限制:1.00s

内存限制:128MB

题目描述

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 NN cows (1N100,0001 \leq N \leq 100,000), each capable of producing
some amount of milk every day. The MM stores near FJ's farm (1M100,0001 \leq M \leq 100,000) each offer to buy a certain amount of milk at a certain price.
Moreover, Farmer John's RR (1R100,0001 \leq R \leq 100,000) 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.

输入格式

The first line in the input contains NN, MM, and RR. The next NN lines
each contain an integer cic_i (1ci1,000,0001 \leq c_i \leq 1,000,000), indicating that
Farmer John's iith cow can produce cic_i gallons of milk every day. The next
MM lines each contain two integers qiq_i and pip_i (1qi,pi1,000,0001 \leq q_i, p_i \leq 1,000,000), indicating that the iith store is willing to buy up to qiq_i
gallons of milk for pip_i cents per gallon. Keep in mind that Farmer John can
sell any amount of milk between zero and qiq_i gallons to a given store. The
next RR lines each contain an integer rir_i (1ri1,000,0001 \leq r_i \leq 1,000,000),
indicating that one of Farmer John's neighbors wants to rent a cow for rir_i
cents per day.

输出格式

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++.

输入输出样例

  • 输入#1

    5 3 4
    6
    2
    4
    7
    1
    10 25
    2 10
    15 15
    250
    80
    100
    40
    

    输出#1

    725
    
首页