#P13163. [GCJ 2017 #1A] Ratatouille
[GCJ 2017 #1A] Ratatouille
题目描述
You've discovered it: the ultimate recipe for ratatouille, the famous French dish! You know which ingredients to use, and how many grams of each one to use, in order to make one serving of ratatouille. But you believe that anyone can cook, and so you want to share the recipe with the world... and make some money in the process!
You have ordered some ingredient packages that are easy to ship. Each package contains some amount of one ingredient; different packages may have different amounts even if they contain the same ingredient. For convenience, you ordered the same number of packages of each ingredient.
You would like to use these packages to form as many ratatouille kits as possible to send to customers. A kit consists of exactly one package of each ingredient, and a label with the integer number of servings of ratatouille that the kit makes. Since you do not want to shortchange customers or waste food, each package must contain between and percent (inclusive) of the amount of that ingredient that is actually needed to make the number of servings of ratatouille on the kit's label.
For example, suppose that one serving of ratatouille takes g of tomato and g of onion. Suppose that you have a g package of tomato and a g package of onion. You could form these into a kit that makes two servings of ratatouille. To make two servings, g of tomato and g of onion are required. Since the g of tomato you have is within of the g of tomato required, and the g of onion you have is within of the g of onion required, this is acceptable. However, you could not say that the kit makes one or three servings of ratatouille, nor could you say that it makes servings (the number of servings must be an integer).
Note that there are some sets of packages that could never form a kit. Continuing with our recipe above, if you have a g package of tomato and an g package of onion, for example, there is no amount of servings that you can make. Three servings would take g of tomato and g of onion, and the amount of onion is not within the range. No other integer amount of servings works, either.
You want to share your recipe with as many customers as possible, so you want to produce the maximum number of valid kits. (Of course, each package can be used in at most one kit.) What is the largest number of kits that you can form? Note that you are not required to maximize the total number of servings of ratatouille formed.
输入格式
The first line of the input gives the number of test cases, . test cases follow. Each case consists of the following:
- One line with two integers : the number of ingredients, and , the number of packages of each ingredient.
- One line with integers . The i-th of these represents the number of grams of the i-th ingredient needed to make one serving of ratatouille.
- more lines of integers each. The j-th value on the i-th of these lines, , represents the quantity, in grams, in the j-th package of the i-th ingredient.
输出格式
For each test case, output one line containing Case #x: y, where is the test case number (starting from 1) and is the maximum number of kits you can produce, as described above.
6
2 1
500 300
900
660
2 1
500 300
1500
809
2 2
50 100
450 449
1100 1101
2 1
500 300
300
500
1 8
10
11 13 17 11 16 14 12 18
3 3
70 80 90
1260 1500 700
800 1440 1600
1700 1620 900
Case #1: 1
Case #2: 0
Case #3: 1
Case #4: 0
Case #5: 3
Case #6: 3
提示
Sample Explanation
Note that the last sample case would not appear in the Small dataset.
Sample cases #1 and #2 are the ones described in the problem statement.
In sample case #3, you can form a kit out of the g package of the first ingredient and the g package of the second ingredient, and say that the kit makes servings of ratatouille. That number of servings requires g of the first ingredient; you have g, which is of and within the allowed limit. It requires g of the second ingredient; you have g, which is of and within the allowed limit.
Once you form this kit, however, you cannot form the remaining packages into a kit. g of the first ingredient and g of the second ingredient would not be able to form (or any other number of) servings. In fact, the ( g, g) kit is the only kit that can be formed from these packages.
In sample case #4, no kits can be formed. Note that the recipe requires particular amounts of particular ingredients in the given order, the ingredients are not interchangeable. This is fine French cuisine, after all!
In sample case #5, the recipe has only one ingredient — how elegantly simple! A single serving cannot use more than g, and two servings cannot use fewer than g. It is possible to form three kits: two with an g package, and one with an g package.
In sample case #6, you can form three valid kits: ( g, g, g), which makes servings, and ( g, g, g) and ( g, g, g), each of which makes servings. Note that you could also say that the ( g, g, g) kit makes , , or servings, but it does not matter how many servings a kit makes as long as the kit is valid.
Limits
- .
- , for all .
- , for all and .
Small dataset (12 Pts, Test Set 1 - Visible)
- Time limit:
6015 seconds. - .
- .
Large dataset (23 Pts, Test Set 2 - Hidden)
- Time limit:
12030 seconds. - .
- .
- .