HDU 2044 一只小蜜蜂
Posted jpphy0
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU 2044 一只小蜜蜂相关的知识,希望对你有一定的参考价值。
链接
一只小蜜蜂 - http://acm.hdu.edu.cn/showproblem.php?pid=2044
分析
- 递推关系
代码
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
ll ans[55];
int t;
int main(){
ans[1]=1;ans[2]=2;
for(int i=3;i<=51;i++) {
ans[i]=ans[i-1]+ans[i-2];
}
scanf("%d",&t);
while(t--) {
int a,b;
scanf("%d%d",&a,&b);
printf("%lld\\n",ans[b-a]);
}
return 0;
}
以上是关于HDU 2044 一只小蜜蜂的主要内容,如果未能解决你的问题,请参考以下文章