首页 > 学院 > 开发设计 > 正文

汉诺塔系列1

2019-11-09 20:42:55
字体:
来源:转载
供稿:网友

汉诺塔系列1

Time Limit: 1000MS Memory Limit: 65536KB SubmitStatistic

PRoblem Description

n个盘子的汉诺塔问题的最少移动次数是2^n-1,即在移动过程中会产生2^n个系列。由于发生错移产生的系列就增加了,这种错误是放错了柱子,并不会把大盘放到小盘上,即各柱子从下往上的大小仍保持如下关系:n=m+p+qa1>a2>...>amb1>b2>...>bpc1>c2>...>cq计算所有会产生的系列总数。

Input

包含多组数据,首先输入T,表示有T组数据.每个数据一行,是盘子的数目N<30。

Output

对于每组数据,输出移动过程中所有会产生的系列总数。

Example Input

3
13
29

Example Output

3
27
68630377364883

Hint

Author

Answer: #include<stdio.h>#include<stdlib.h>#include<math.h>int main(){    int i,n;    long long int t;    scanf("%d",&n);    while(n--)    {        scanf("%d",&i);        t=pow(3,i);        printf("%lld/n",t);    }    return 0;}
上一篇:super的应用

下一篇:HDU-2899

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表