eolymp
bolt
Try our new interface for solving problems
Problems

The Towers of Hanoi Revisited

The Towers of Hanoi Revisited

You all must know the puzzle named "The Towers of Hanoi". The puzzle has three pegs and \textbf{N} discs of different radii, initially all disks are located on the first peg, ordered by their radii - the largest at the bottom, the mallest at the top. In a turn you may take the topmost disc from any peg and move it to another peg, the only rule says that you may not place the disc atop any smaller disk. The problem is to move all disks to the last peg making the smallest possible number of moves. There is the legend that somewhere in Tibet there is a monastery where monks tirelessly move disks from peg to peg solving the puzzle for \textbf{64 }discs. The legend says that when they finish, the end of the world would come. Since it is well known that to solve the puzzle you need to make \textbf{2^N-1} moves, a small calculation shows that the world seems to be a quite safe place for a while. However, recent archeologists discoveries have shown that the things can be a bit worse. The manuscript found in Tibet mountains says that the puzzle the monks are solving has not \textbf{3} but \textbf{M} pegs. This is the problem, because when increasing the number of pegs, the number of moves needed to move all discs from the first peg to the last one following the rules described, decreases dramatically. Calculate how many moves one needs to move \textbf{N} discs from the first peg to the last one when the puzzle has \textbf{M} pegs and provide the scenario for moving the discs. \InputFile Input file contains \textbf{N} and \textbf{M} (\textbf{1} ≤ \textbf{N} ≤ \textbf{64}, \textbf{4} ≤ \textbf{M} ≤ \textbf{65}). \OutputFile On the first line output \textbf{L} - the number of moves needed to solve the puzzle. Next \textbf{L} lines must contain the moves themselves. For each move print the line of the form \textbf{move from to} if the disc is moved to the empty peg or \textbf{move from to atop} if the disc is moved atop some other disc. Disc radii are integer numbers from \textbf{1} to \textbf{N}, pegs are numbered from \textbf{1} to \textbf{M}.
Time limit 1 second
Memory limit 64 MiB
Input example #1
5 4
Output example #1
13
move 1 from 1 to 3
move 2 from 1 to 2
move 1 from 3 to 2 atop 2
move 3 from 1 to 4
move 4 from 1 to 3
move 3 from 4 to 3 atop 4
move 5 from 1 to 4
move 3 from 3 to 1
move 4 from 3 to 4 atop 5
move 3 from 1 to 4 atop 4
move 1 from 2 to 1
move 2 from 2 to 4 atop 3
move 1 from 1 to 4 atop 2
Author Andrew Stankevich
Source Petrozavodsk Summer Trainings 2003, 2003-08-23