Problem G
Fake Scoreboard
As you know, after the award ceremony of SWERC it is customary to publish a complete scoreboard with detailed information on the submissions and verdicts received. However, due to the buggy contest management system, most of the relevant data are not being recorded today. Clearly such state of affairs fails to meet the high standards we are committed to, so the judges have resolved to make up the rest of the data based on whatever shred of information left, and hope contestants are unable to tell the difference. To make our lives even simpler, we kindly ask you to provide a solution for us, or else today’s scoreboard will remain forever veiled in mystery (even the fake one).
What we will know by the end of the contest is the number
Our counting skills are not up to par, so your program
should be able to detect when the data we collected must be
wrong (see sample input 1). Otherwise you should output a
possible solution, represented as a sequence of T strings of P
characters each, in the following way. Both problems and teams
are assigned with distinct integers, from 1 to P and 1 to T ,
respectively. For team number
NNY
YYN
There is at least one other solution, namely
NYN
YNY
When several solutions are possible we ask you to supply the
one giving rise to the lexicographically smallest string, when
each of the T rows are concatenated in order. In the example
above we prefer the first solution, since NYYNNYYYN comes before NYYNYNYNY in lexicographical order. (String
Input
The input consists of at most
The first contains two space-separated integers
The last line of the input file will be 0 0.
Output
If the input data has a solution, print
Sample Input 1 | Sample Output 1 |
---|---|
2 2 1 2 1 1 3 3 2 1 2 1 2 2 3 5 3 3 1 3 1 1 0 2 0 0 |
Impossible NYY NNY YYN YNYNY YYNNY YNNNN |