#Lutece0857. Boiling Vegetables

Boiling Vegetables

Migrated from Lutece 857 Boiling Vegetables

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

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 w and cut it arbitrarily in two pieces of weight wleftw_{left} and wrightw_{right}, where wleft+wright=ww_{left} +w_{right} = w. 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

The input starts with a floating point number TT with 22 decimal digits, 0.5<T<10.5 < T < 1, and a positive integer N1000N \leq 1 000. Next follow NN positive integer weights w1,w2,,wNw_1,w_2, \cdots ,w_N. All weights are less than 10610^6.

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 TT. You may assume that the number of cuts needed is less than 500500.

To avoid issues with floating point numbers, you can assume that the optimal answer for ratio TT is the same as for ratio T+0.0001T + 0.0001.

Samples

0.99 3
2000 3000 4000
6
0.80 2
1000 1400
3

Resources

Nordic Collegiate Programming Contest 2013