Two coins of each kind (1)

Given a natural number xx and nn different coin values c1cnc_1 \ldots c_n, compute in how many ways it is possible to achieve change xx by using each value at most twice. Here, two coins with the same value are considered different.

For example, if x=4x = 4 and the available values are 11 and 22, then there are three ways to achieve it: 1+1+21 + 1' + 2, 1+1+21 + 1' + 2', and also 2+22 + 2'.

Input

Input consists of several cases. Every case begins with xx and nn, followed by c1cnc_1 \ldots c_n. Assume 1n201 \le n \le 20, 1cix10001 \le c_i \le x \le 1000, and that all cic_i are different.

Output

For every case print, in lexicographic order, all possible ways to exactly achieve change xx by using each value at most twice. Print every solution with its values sorted from small to big. In doing that, assume 1<1<2<2<1 < 1' < 2 < 2' < \ldots. Use “1p” to print 11', etcetera. Print a line with 10 dashes at the end of every case.

Hint

A simply pruned backtracking should be enough.

Problem information

Author: Unknown
Translator: Albert Atserias

Generation: 2026-01-25T11:11:57.145Z

© Jutge.org, 2006–2026.
https://jutge.org