博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Fibonacci Numbers
阅读量:6358 次
发布时间:2019-06-23

本文共 3798 字,大约阅读时间需要 12 分钟。

Fibonacci Numbers

Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 81 Accepted Submission(s): 46
 
Problem Description
The Fibonacci sequence is the sequence of numbers such that every element is equal to the sum of the two previous elements, except for the first two elements f0 and f1 which are respectively zero and one.
What is the numerical value of the nth Fibonacci number?
 
Input
For each test case, a line will contain an integer i between 0 and 10
8 inclusively, for which you must compute the ith Fibonacci number fi. Fibonacci numbers get large pretty quickly, so whenever the answer has more than 8 digits, output only the first and last 4 digits of the answer, separating the two parts with an ellipsis (“...”).
There is no special way to denote the end of the of the input, simply stop when the standard input terminates (after the EOF).
 
 
Sample Input
0123453536373839406465
 
Sample Output
0112359227465149303522415781739088169632459861023...41551061...77231716...7565
 
 
Source
IPCP 2005 Northern Preliminary for Northeast North-America
 
Recommend
lcy
 
/*题意:求第n个斐波那契数列的值,只需要前四位,后四位初步思路:后四位好说,膜一下就行了重要的就是前四位.总共1e8的时间,感觉用大数爆都会超时#补充:后四位矩阵膜10000就行了,前四位可以用通项公式取对数的方法求。*/#include
#define ll long long#define mod 10000using namespace std;/********************************矩阵模板**********************************/class Matrix { public: int a[2][2]; void init(int x) { memset(a,0,sizeof(a)); if (x) for (int i = 0; i < 2 ; i++) a[i][i] = 1; } Matrix operator +(Matrix b) { Matrix c; for (int i = 0; i < 2; i++) for (int j = 0; j < 2; j++) c.a[i][j] = (a[i][j] + b.a[i][j]) % mod; return c; } Matrix operator +(int x) { Matrix c = *this; for (int i = 0; i < 2; i++) c.a[i][i] += x; return c; } Matrix operator *(Matrix b) { Matrix p; p.init(0); for (int i = 0; i < 2; i++) for (int j = 0; j < 2; j++) for (int k = 0; k < 2; k++) p.a[i][j] = (p.a[i][j] + (a[i][k]*b.a[k][j])%mod) % mod; return p; } Matrix power_1(int t) { Matrix Frist,p = *this; Frist.init(1); while (t) { if (t & 1) Frist=Frist*p; p = p*p; t >>= 1; } return Frist; } Matrix power_2(Matrix a,Matrix b,int x){ while(x){ if(x&1){ b=a*b; } a=a*a; x>>=1; } return b; }};/********************************矩阵模板**********************************/Matrix unit,init;ll f[45];ll n;int main(){ // freopen("in.txt","r",stdin); f[0]=0; f[1]=1; for(int i=2;i<40;i++){ f[i]=f[i-1]+f[i-2]; } while(scanf("%lld",&n)!=EOF){ if(n<40){ printf("%lld\n",f[n]); continue; } unit.a[0][0]=1; unit.a[0][1]=0; unit.a[1][0]=0; unit.a[1][1]=1; init.a[0][0]=1; init.a[0][1]=1; init.a[1][0]=1; init.a[1][1]=0; init=init.power_1(n-1);//有问题 unit=unit*init; int Last=unit.a[0][0]; long double Frist=-0.5 * log(5.0) / log(10.0) + ((long double)n) * log((sqrt(5.0)+1.0)/2.0) / log(10.0); Frist-=floor(Frist); Frist=pow(10,Frist); while(Frist<1000) Frist*=10; printf("%d...%04d\n",(int) Frist,Last); } return 0;}

 

转载于:https://www.cnblogs.com/wuwangchuxin0924/p/6384810.html

你可能感兴趣的文章
【实用】面对枯燥的源码,如何才能看得下去?
查看>>
智库说 | 徐远:数字时代的城市潜力
查看>>
《JSP极简教程》jsp c:forEach用法
查看>>
WebSocket详解(六):刨根问底WebSocket与Socket的关系
查看>>
用 Go 写一个轻量级的 ssh 批量操作工具
查看>>
网站设计之合理架构CSS 架构CSS
查看>>
OTP 22.0 RC3 发布,Erlang 编写的应用服务器
查看>>
D语言/DLang 2.085.1 发布,修复性迭代
查看>>
感觉JVM的默认异常处理不够好,既然不好那我们就自己来处理异常呗!那么如何自己处理异常呢?...
查看>>
Java 基础 之 算数运算符
查看>>
Windows下配置安装Git(二)
查看>>
一个最简单的基于Android SearchView的搜索框
查看>>
铁路开通WiFi“钱景”不明
查看>>
Facebook申请专利 或让好友及陌生人相互拼车
查看>>
电力“十三五”规划:地面光伏与分布式的分水岭
查看>>
美联社再告FBI:要求公开请黑客解锁iPhone花费
查看>>
三星电子出售希捷和夏普等四家公司股份
查看>>
任志远:当云计算遇上混合云
查看>>
思科联手发那科 用物联网技术打造无人工厂
查看>>
智慧城市首要在政府利用大数据的智慧
查看>>