Based on the classical problem of tower of Hanoi, there are four rods indexed by A,B,C,D (the only difference between this problem and the classical one) and

disks of various diameters, which can slide onto any rod. The puzzle begins with disks stacked on one rod in order of decreasing size, the smallest on the top, thus approximating a conical shape. The objective of the puzzle is to move the entire stack to the last rod (indexed by D), obeying the following rules:
- Only one disk may be moved at a time.
- Each move consists of taking the upper disk from one of the stacks and placing it on top of another stack or on an empty rod.
- No disk may be placed on top of a disk that is smaller than it.
You need to calculate the minimum number of moves required to solve the problem.
输入描述:
The first line is a positive integer
, indicating that there are
test data.
Next, there are
lines. Each line has a positive integer )
, indicating the number of plates in each of a test data.
输出描述:
Each test data outputs a line as a positive integer, that is, the minimum number of steps required to move all
plates from the first column A to the last column D.