1307. Frogman

单点时限: 2.0 sec

内存限制: 256 MB

A frogman uses a special equipment for diving. He has a cylinder with two containers: one with oxygen and the other with nitrogen. Depending on the time he wants to stay under water and the depth of diving the frogman needs various amount of oxygen and nitrogen. The frogman has at his disposal a certain number of cylinders. Each cylinder can be described by its weight and the volume of gas it contains. In order to complete his task the frogman needs specific amount of oxygen and nitrogen. What is the minimal total weight of cylinders he has to take to complete the task?

Example

The frogman has at his disposal 5 cylinders described below. Each description consists of: volume of oxygen, volume of nitrogen (both values are given in litres) and weight of the cylinder (given in decagrams):

3 36 120

10 25 129

5 50 250

1 45 130

4 20 119

If the frogman needs 5 litres of oxygen and 60 litres of nitrogen then he has to take two cylinders of total weight 249 (for example the first and the second ones or the fourth and the fifth ones).

Task

Write a program that:

1.reads frogman’s demand for oxygen and nitrogen, the number of accessible cylinders and their descriptions;

2.computes the minimal total weight of cylinders the frogman needs to complete his task;

3.writes the result.

Note: given set of cylinders always allows to complete the given task.

输入格式

In the first line of the input there are two integers t, a separated by a single space, 1<=t<=21 and 1<=a<=79. They denote volumes of oxygen and nitrogen respectively, needed to complete the task. The second line contains one integer n, 1<=n<=1000, which is the number of accessible cylinders. The following n lines contain descriptions of cylinders; (i+2)-nd line of the input contains three integers ti, ai, wi separated by single spaces, (1<=ti<=21, 1<=ai<=79, 1<=wi<=800). These are respectively: volume of oxygen and nitrogen in the i-th cylinder and the weight of this cylinder.

输出格式

Your program should write one integer to the first and only line of the output. This number should be the minimal total weight of cylinders the frogman should take to complete the task.

样例

Input
5 60
5
3 36 120
10 25 129
5 50 250
1 45 130
4 20 119
Output
249

0 人解决,3 人已尝试。

0 份提交通过,共有 5 份提交。

9.9 EMB 奖励。

创建: 16 年,11 月前.

修改: 6 年,10 月前.

最后提交: 15 年,11 月前.

来源: POI 1998 II Stage

题目标签