hdoj:2042

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hdoj:2042相关的知识,希望对你有一定的参考价值。

#include <iostream>
using namespace std;

int main()
{
    int n,a;
    while (cin >> n)
    {
        while (n--)
        {
            cin >> a;
            long num = pow(2, a) + 2;
            cout << num << endl;
        }
    }
}

 

a(n) = 2*a(n-1) -2

a(n) -2 = 2*{a(n-1) -2}

a(n) = 2^n + 2

以上是关于hdoj:2042的主要内容,如果未能解决你的问题,请参考以下文章

I - The Mad Mathematician FZU - 2042(未解决)

[HDOJ3308]LCIS(线段树,区间合并,新的代码)

HDOJ 1069_大二写

HDOJ 1031-1037

LeetCode 2042. 检查句子中的数字是否递增

[模板]洛谷T2042 NOI2005 维护数列 Splay