Preparing NOJ
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:
You need to calculate the minimum number of moves required to solve the problem.
The first line is a positive integer $$$T(1 \leq T \leq 10000)$$$, indicating that there are $$$T$$$ test data. Next, there are $$$T$$$ lines. Each line has a positive integer $$$N (1 \le N \le 10000)$$$ , 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.
5 1 2 3 4 5
1 3 5 9 13
Info
Provider CodeForces Gym
Origin 2021 Jiangxi Provincial Collegiate Programming Contest
Code GYM103366F
Tags
Submitted 0
Passed 0
AC Rate 0%
Date 10/25/2021 22:31:55
Related