Boiling Vegetables
The trick to boiling vegetables is to make sure all pieces are about the same size. If they are not, the small ones get too soft or the large ones get undercooked (or both). Fortunately, you have heard of the kitchen knife, but your parents' warnings of using sharp instruments still echoes in your head. Therefore you better use it as little as possible. You can take a piece of a vegetable of weight and cut it arbitrarily in two pieces of weight and , where . This operation constitutes a "cut".
Given a set of pieces of vegetables, determine the minimum number of cuts needed to make the ratio between the smallest and the largest resulting piece go above a given threshold.
Input
Starts with a floating point number with decimal digits, and a positive integer . Next follow positive integer weights . All weights are less than .
Output
Output the minimum number of cuts needed to make the ratio between the resulting minimum weight piece and the resulting maximum weight piece be above . You may assume that the number of cuts needed is less than . To avoid issues with floating point numbers, you can assume that the optimal answer for ratio is the same as for ratio .