HDU - 超级楼梯

Posted shallow-dream

tags:

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

http://acm.hdu.edu.cn/showproblem.php?pid=2041

 

#include <stdio.h>
#include <cstring>
#include <algorithm>
#include <vector>
#include <map>
#include <assert.h>
#include <set>
#include <cmath>
#include <queue>
#include <cstdlib>
#include <iostream>
#include <bitset>
#define pii pair<int,int>
#define fi first
#define se second
#define pb push_back
using namespace std;
typedef long long ll;
const int mxn = 1e2+5;
ll n,m,k,t,dp[mxn],a[mxn];
int main()
{
    for(int i=1;i<55;i++)
        dp[i] = i<=3 ? i : dp[i-1]+dp[i-2] ;
    cin>>t;
    while(t--)
    {
        cin>>n;
        cout<<dp[n-1]<<endl;
    }
    return 0 ;
}

 

以上是关于HDU - 超级楼梯的主要内容,如果未能解决你的问题,请参考以下文章

HDU 2014:超级楼梯(动态规划)

HDU - 超级楼梯

Hdu2041 超级楼梯 (斐波那契数列)

HDU 2041 超级楼梯

hdu 2041 超级楼梯

HDU 1180 诡异的楼梯(超级经典的bfs之一,需多回顾)