码迷,mamicode.com
首页 > 其他好文 > 详细

HDU - 一只小蜜蜂 :递推

时间:2020-02-01 16:17:05      阅读:64      评论:0      收藏:0      [点我收藏+]

标签:递推   cstring   const   problem   air   pair   fir   ace   map   

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

 

 

#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>>m;
        cout<<dp[m-n]<<endl;
    }
    return 0 ;
}

 

HDU - 一只小蜜蜂 :递推

标签:递推   cstring   const   problem   air   pair   fir   ace   map   

原文地址:https://www.cnblogs.com/Shallow-dream/p/12248572.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!