Four Column Hanoi Tower
题号:NC229489
时间限制:C/C++/Rust/Pascal 2秒,其他语言4秒
空间限制:C/C++/Rust/Pascal 256 M,其他语言512 M
64bit IO Format: %lld

题目描述

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 N 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 T test data.
Next, there are T 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 N plates from the first column A to the last column D.
示例1

输入

复制
5
1
2
3
4
5

输出

复制
1
3
5
9
13