Given a value of cents, and an infinite supply of coins of
denominations, followed by their denominations, find the least amount of coins required to make change for
.
Input Specification
Line :
, an integer between
and
.
Line :
, the number of different denominations.
Line : the denominations of the coins.
Output Specification
An integer, on a single line - the least coins required to make change for .
Sample Input
24
4
12
13
5
6
Sample Output
2
Comments
My algorithm was wrong and yet I got 100% AC...?
The maximum value of n is 86.
According to the problem author, it is always possible to make change for x.