P13404 [GCJ 2010 #3] Fence
Description
We are looking into building a very long fence. We have already found a nice place to build it, and all that remains is to collect the materials.
From local hardware stores, we can buy unlimited numbers of wooden boards, each of which can come in a variety of different lengths. To avoid waste, we want to make sure that the total length of these boards is exactly equal to the length of the fence we are trying to build.
Given the length of the fence, and the possible board lengths that we can use, what is the minimum number of boards that we need to purchase in order to get exactly the right length?
Beware: the fence is going to be very long!
Input Format
The first line of the input file contains the number of cases, $T$. $T$ test cases follow.
Each test case consists of two lines. The first line contains space-separated integers $L$ and $N$. These represent the total length of the fence, and the number of different board lengths that can be purchased. The second line contains $N$ space-separated integers $B_1$, $B_2$, ..., $B_N$, representing all the possible board lengths.
Output Format
For each test case, output one line containing "Case #$x$: $M$", where $x$ is the case number (starting from 1) and $M$ is as follows:
- If it is possible to purchase one or more boards so that their total length is exactly equal to $L$, then $M$ should be the minimum number of boards required to do this.
- Otherwise, $M$ should be the string "IMPOSSIBLE".
Explanation/Hint
**Sample Explanation**
In the first example, the optimal strategy is to use $2$ boards of length $23$, $5$ boards of length $51$, and $99999997$ boards of length $100$. Of course, you could use just $100000001$ boards of length $100$ to get a total greater than $L$, but that is not allowed.
In the second example, it is only possible to get even lengths.
**Limits**
- $1 \leq T \leq 50$.
- $10^{10} \leq L \leq 10^{18}$.
- $1 \leq N \leq 100$.
**Small dataset (7 Pts, Test set 1 - Visible)**
- $1 \leq B_i \leq 100$.
**Large dataset (22 Pts, Test set 2 - Hidden)**
$1 \leq B_i \leq 100000$.