In this problem we consider words of size
made up only of letters ‘a’, ‘b’ and
‘c’, and without two or more consecutive equal letters.
Suppose that some positions of the word have fixed letters. Write a
program to print all the words that meet these constraints.
Input consists of several cases. Every case starts with
,
followed by the number of fixed positions
,
followed by
pairs
,
where
is a position between 0 and
and
is ‘a’, ‘b’ or ‘c’. Suppose
,
,
and that all
’s
are different.
For every case, print in alphabetical order all words that satisfy the constraints. Print a line with 20 dashes at the end of each case.
Input
2 0 3 1 2 b 1 1 0 a 2 2 0 b 1 b 4 2 3 a 0 a
Output
ab ac ba bc ca cb -------------------- acb bab bcb cab -------------------- a -------------------- -------------------- abca acba --------------------