beecrowd | 1638

Food Portion Size

Local Contest, University of Ulm DE Germany

Timelimit: 1

The university canteen does not want any student to leave the canteen hungry. Therefore, as long as a student is hungry, he can get another portion of food for free. The canteen uses a fixed food portion size, because it would take too much time to first ask a student how much food he wanted. It can happen that a student doesn't finish his last portion of food and the remainder has to be thrown away.

To minimize costs, the manager of the canteen wants to determine a food portion size S such that the amount of food that is wasted is small, but also the number of times the students have to fetch another portion of food is not too big. Note that these two goals can be conflicting:

The manager of the canteen has collected data about how many units of food each student eats. The problem to be solved can now be formulated mathematically as follows: Let X be the amount of food that is wasted, and Y the number of times the students go to fetch food. Then, the goal is to minimize A × X + B × Y, where A, B are weights that represent the relative importance of the two opposing goals. Note that X and Y depend on the food portion size S and the quantities of food each student eats. We impose the additional constraint that no student should have to go more than 3 times to fetch food.

Input

The input file contains several test cases. Each test case starts with a line containing an integer n, (1 ≤ N ≤ 1000), the number of students eating in the canteen. The next line contains the values A and B (1 ≤ A, B ≤ 10). The third line of each test case consists of n integers Y1, ..., Yn (1 ≤ Yi ≤ 100), where Yi is the amount of food student I eats. Input is terminated by N=0.

OBS: In the first sample input, the optimal food portion size is 4.5. Note that a food portion size of 3 would yield a smaller cost of 16, the 5th student, however, would have to fetch food 4 times.

Output

For each test case print one line containing the costs resulting from an optimal choice of the food portion size. Print each value as a reduced fraction. If the result is an integer, do not print the denominator 1. See the sample output for details.

Sample Input Sample Output

5

1 1

3 7 1 9 12

3

10 1

11 13 17

2

2 3

6 3

0

35 / 2

154 / 3

9