• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
dwtfukgv
博客园    首页    新随笔    联系   管理    订阅  订阅
HDU 2044 一只小蜜蜂...(递推,Fibonacci)

题意:中文题。

析:首先要想到达第 n 个蜂房,那么必须经 第 n-1 或第 n-2 个蜂房,那么从第 n-1 或第 n-2 个蜂房到达第 n 个,都各自有一条路线,

所以答案就是第 n-1 + 第 n-2 个蜂房,即 ans[i] = ans[i-1] + ans[i-2];注意要用long long 因为超int了。

代码如下:

#include <iostream>
#include <cstdio>
#include <algorithm>
#include <vector>
#include <set>
#include <cstring>
#include <cmath>

using namespace std;
typedef long long LL;
const int maxn = 50 + 5;
LL ans[maxn];

void init(){
    ans[1] = 1;
    ans[2] = 1;
    for(int i = 3; i < 50; ++i)  ans[i] = ans[i-1] + ans[i-2];
}

int main(){
    init();
    int T, a, b;  cin >> T;
    while(T--){
        scanf("%d %d", &a, &b);
        printf("%lld\n", ans[b-a+1]);
    }
    return 0;
}

 

posted on 2016-07-03 14:08  dwtfukgv  阅读(261)  评论(0)    收藏  举报
刷新页面返回顶部
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3