SP6851 CT10R3B - 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".