IOI '95 - Eindhoven, Netherlands
In a shop each kind of product has a price. For example, the price of a flower is ICU (Informatics Currency Units) and the price of a vase is ICU. In order to attract more customers, the shop introduces some special offers.
A special offer consists of one or more product items for a reduced price. Examples:
- three flowers for ICU instead of , or
- two vases together with one flower for ICU instead of .
Write a program that calculates the price a customer has to pay for certain items, making optimal use of the special offers. That is, the price should be as low as possible. You are not allowed to add items, even if that would lower the price.
For the prices and offers given above, the (lowest) price for three flowers and two vases is ICU: two vases and one flower for the reduced price of ICU and two flowers for the regular price of ICU.
Input Specification
The input has a set of offers followed by a purchase.
Line : | , the number of special offers, . |
Line : | Each line describes an offer using several integers. The first integer is , the number of products that are offered. The subsequent pairs of integers and indicate that items with product code are part of the offer. The last number on the line stands for the reduced price . The reduced price of an offer is less than the sum of the regular prices. |
Line : | The first line contains the number of different kinds of products to be purchased. |
Line : | Each of the subsequent lines contains three values: , , and . The value is the (unique) product code . The value indicates how many items of this product are to be purchased . The value is the regular price per item . At most items can be in the basket. |
Output Specification
A single line with one integer: the lowest possible price to be paid for the purchases.
Sample Input
2
1 7 3 5
2 7 1 8 2 10
2
7 3 2
8 2 5
Sample Output
14
Comments