Problem B
Coin Stacks

The players win the game if they manage to remove all the coins. Is it possible for them to win the game, and if it is, how should they play?
Input
The first line of input contains an integer
Output
If the players can win the game, output a line containing
“yes”, followed by a description of
the moves. Otherwise output a line containing “no”. When describing the moves, output one move
per line, each move being described by two distinct integers
Sample Input 1 | Sample Output 1 |
---|---|
3 1 4 3 |
yes 1 2 2 3 2 3 2 3 |
Sample Input 2 | Sample Output 2 |
---|---|
3 1 1 1 |
no |