HDU - 2018 :递推

Posted shallow-dream

tags:

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

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

#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;
int n,m,k,t,dp[mxn],a[mxn];
int main()
{
    for(int i=1;i<55;i++)
        dp[i] = i<=4 ? i : dp[i-1]+dp[i-3] ;
    while(cin>>n)
    {
        if(n) cout<<dp[n]<<endl;
        else break;
    }
    return 0 ;
}

 

以上是关于HDU - 2018 :递推的主要内容,如果未能解决你的问题,请参考以下文章

hdu 2018 母牛的故事 递推

2018 “百度之星”程序设计大赛 - 初赛(A)1004 / hdu6377 度度熊看球赛 dp递推

HDU2018 母牛的故事

HDU 2013(递推&递归_D题)解题报告

HDU 2501 [Tiling_easy version] 递推

HDU 2089 不要62 (递推+暴力)