【杭电100题】2077 汉诺塔IV

原题链接:http://acm.hdu.edu.cn/showproblem.php?pid=2077
在汉诺塔三的基础上改了点

#include <iostream>

using namespace std;

int main()
{
    __int64 x[21],y[21];
    x[1]=2;
    y[1]=2;
    for(int i=2; i<21; i++)
    {
        x[i]=3*x[i-1]+2;
        y[i]=x[i-1]+2;
    }

    int t,n;
    cin>>t;
    while(t--)
    {
        cin>>n;
        cout<<y[n]<<endl;
    }
    return 0;
}

    原文作者: 汉诺塔问题
    原文地址: https://blog.csdn.net/qq_41727666/article/details/88359200
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞