F.A.Q
Hand In Hand
Online Acmers
Problem Archive
Realtime Judge Status
Authors Ranklist
 
     C/C++/Java Exams     
ACM Steps
Go to Job
Contest LiveCast
ICPC@China
Best Coder beta
VIP | STD Contests
    DIY | Web-DIY beta
Author ID 
Password 
 Register new ID

From ICPC to ACM

Time Limit: 2000/2000 MS (Java/Others)    Memory Limit: 131072/131072 K (Java/Others)
Total Submission(s): 813    Accepted Submission(s): 249


Problem Description
You, a former International Collegiate Programming Contest player, have now become an Assistant Cost Manager of Advanced Computer Manufacturing company. There are so many different kinds of costs you should deal with, including material cost, manufacturing cost and warehouse cost. Also, the customer's demand must be fully satisfied. Moreover, the space of warehouse is limited. To make things worse, all these parameters vary with time. To resolve this matter once for all, you decide to use your algorithmic knowledge to write a program.

Specifically, you have to find an optimal operational planning for the next $k$ months, under the following constraints: $\textbf{in the i-th month}$,
- the price of raw materials is $c_i$ yuan per unit, and the quantity of raw materials you purchase is not limited.
- the customer's demand is $d_i$ computers, that is, you must sell exactly $d_i$ computers to customers this month.
- your company can manufacture at most $p_i$ computers. Manufacturing one computer consumes one unit of raw materials plus a manufacturing cost of $m_i$ yuan.
- you can store raw materials and computers in the warehouse for future use. According to the regulations of your company, the raw materials and computers must be placed in two different areas of the warehouse. You can store at most $e_i$ computers to the next month. However, since the volume of raw materials is negligible, the number of raw materials you store is not limited. Storing one unit of raw materials or one computer to the next month takes $R_i$ yuan or $E_i$ yuan, respectively.

Also,
- you may immediately use the raw materials you purchase this month to manufacture computers, as long as the the production capacity of this month is enough; likewise, you may manufacture and sell computers in the same month. These raw materials and computers do not take up warehouse space.
- initially, there are no raw materials or computers in your company.

Your program should report whether all customer's demands can be fully satisfied, and, if so, report the minimum total cost.
 

Input
The first line of input is a single integer $T$ $(1 \leq T \leq 200)$, denoting the number of test cases.

Each test case begins with a single line of integer $k$ $(2 \leq k \leq 50000)$, the number of months. The $i$-th of the following $k$ lines contains four integers $c_i, d_i, m_i, p_i$ $(0 \leq c_i, d_i, m_i, p_i \leq 10^4)$, the price of raw materials, the customer's demand, the unit manufacturing cost and the manufacturing capacity of the $i$-th month, respectively. The $i$-th of the next $k-1$ lines contains three integers $e_i, R_i, E_i$ $(0 \leq e_i \leq 10^8, 0 \leq R_i, E_i \leq 10^4)$, the capacities of computer area of the warehouse, and the warehouse cost of storing a unit of raw material and a computer, between the $i$-th and the $(i+1)$-th month, respectively.

It is guaranteed that the sum of $k$ over all test cases does not exceed $3 \times 10^5$.
 

Output
For each test case, display an integer in a line, denoting the minimum total cost. If customer demands cannot be fully satisfied, display $\texttt{-1}$ instead.
 

Sample Input
2 2 10 5 3 6 15 7 2 8 2 3 2 2 0 8 0 7 0 0 0 0 0 0 0
 

Sample Output
170 -1
 

Hint

In the first sample test case, you may purchase 12 units of raw materials, which takes 120 yuan, and put 7 of them into the warehouse for the next month, which takes
21 yuan. Then, your company may manufacture 5 computers and sell them, which takes 15 yuan. In the second month, your company may manufacture and sell 7
computers using the raw materials in the warehouse, which takes 14 yuan. The total cost is 170 yuan, which can be proved to be optimal.

In the second sample test case, the manufacturing capacity of the first month is less than the customer's demand, so the customer's demand cannot be fully satisfied.
 

Source
 

Statistic | Submit | Discuss | Note
Hangzhou Dianzi University Online Judge 3.0
Copyright © 2005-2024 HDU ACM Team. All Rights Reserved.
Designer & Developer : Wang Rongtao LinLe GaoJie GanLu
Total 0.000000(s) query 1, Server time : 2024-04-26 21:52:40, Gzip enabled