ICPC NWERC 2005 A - Unequalled Consumption

View as PDF

Submit solution

Points: 25
Time limit: 1.0s
Memory limit: 1G

Problem type

The Association of Candy Makers is preparing to launch a new product. Its idea is old with a novel twist: it simply sells boxes of candies. But since people are what they consume and everyone wants to be unique these days, the ACM wants every candy box to be unique, in the sense that no two boxes should contain the same composition of candy types.

The ACM is only able to make a small number n of different types of candy, but while limited in imagination, it is virtually limitless in resources, so it is able to produce as many as it wants of each type of candy. Furthermore, the candy types have different weights (though some may weigh the same), and in order to simplify pricing matters, the ACM wants all candy boxes to have the same total weight.

With these restrictions, the ACM will only be able to make a limited number of boxes. For instance, if there are three types of candy, weighing 5, 5 and 10 grams respectively, 4 different boxes can be made with total weight 10 grams (using either two of type 1, or two of type 2, or one of type 3, or one each of types 1 and 2). The ACM would like to be able to make at least one box for everyone in the cosmos. So, given queries in the form of the number of people P in the cosmos, your job is to find the smallest possible total weight w such that P different boxes containing exactly w grams of candies can be made.

Input Specification

The input consists of several data sets (at most 20). Each data set consists of four lines. The first line contains an integer 1 \le n \le 5, the number of candy types. The next line contains n integers w_1, \dots, w_n, where 1 \le w_i \le 10 is the weight (in grams) of the i^\text{th} candy type. The third line contains an integer 1 \le q \le 10, the number of queries. The last line of a data set contains q integers P_1, \dots, P_q, where 1 \le P_j \le 10^{15} is the j^\text{th} query. Input is terminated by an incomplete data set where n = 0, which should not be processed.

Output Specification

For the i^\text{th} data set, write a line "Set i", followed by q lines giving, for each query P_j, the minimal possible positive weight W_j (in grams) of a candy box. If there is no weight W_j such that at least P_j candy boxes can be made, print no candy for you for that query. You may assume that W_j, if it exists, will be at most 100 \cdot P_j.

Sample Input

3
5 5 10
1
4
4
3 1 4 2
2
142 700
1
10
1
100
0

Sample Output

Set 1
10
Set 2
23
42
Set 3
no candy for you

Comments

There are no comments at the moment.