eolymp
bolt
Try our new interface for solving problems
Problems

Hanoi Tower

Hanoi Tower

"Hanoi tower" puzzle is well known. There are 3 pegs with numbers: #1, #2 and #3. N disks of different diameters are set on the first peg in the following order: the lower disk is set, the larger diameter it has. Your aim is to move all disks onto the second peg using the peg #3 as an auxiliary one. Following the rules within a move it's allowed to replace only one uppermost disk. Besides it's forbidden to put the disk of the bigger diameter onto the disk of the smaller one. Distribution of disks on the pegs during the game must be assigned as sequence D (element #i of the sequence is equal to the number of peg where the disk #i is placed on). For instance, game status after the third move is apparently determined by sequence D=(3, 3, 1) (the first and the second disks are set on the third peg and the third disk is on the peg #1). Example. Let's assume that 3 disks are set on the peg #1. Then the movement of the disks can be depicted in the following table (disks are numbered in ascending order of diameters): Your aim is either to determine (using arbitrary sequence D) the number of moves from the beginning of the game to the given position on condition of performing the optimal algorithm; or to print "−1" in the case of incorrect sequence declaration (i.e. the given position cannot be achieved performing the optimal algorithm).Reference notes. Optimal algorithm can be specified with the following recursive procedure. procedure Hanoi(N:integer; From, To_, Temp : integer);Begin if N>0 then begin Hanoi(N-1, From, Temp, To_); writeln (N, From, To_); Hanoi(N-1, Temp, To_, From) endEnd; For example, to move 5 disks it's enough to call Hanoi(5,1,2,3) Admonition. It is obvious that during the game process simultaneous setting of disks on all the pegs (#1, #2, #3) is never repeated, thus the answer will always be unequivocal. \InputFile The first line of input contains integer \textbf{N} (\textbf{1} ≤ \textbf{N} ≤ \textbf{31}). The other \textbf{N} successive lines contain integers \textbf{D_1}, \textbf{D_2}, …, \textbf{D_N}. \textbf{1} ≤ \textbf{D_1}, \textbf{D_2}, …, \textbf{D_N} ≤ \textbf{3}. \OutputFile Output should contain either the number of moves, or \textbf{−1}.
Time limit 1 second
Memory limit 64 MiB
Input example #1
3
3
3
1
Output example #1
3
Source NEERC 2000 Central Subregional, Rybinsk State Avia Academy