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

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

1250 Fibonacci数列

 

 时间限制: 1 s
 空间限制: 128000 KB
 题目等级 : 钻石 Diamond
 查看运行结果
 
 
题目描述 
Description

定义:f0=f1=1, fn=fn-1+fn-2(n>=2)。{fi}称为Fibonacci数列。

输入n,求fn mod q。其中1<=q<=30000。

输入描述 
Input Description

第一行一个数T(1<=T<=10000)。

以下T行,每行两个数,n,q(n<=109, 1<=q<=30000)

输出描述 
Output Description

文件包含T行,每行对应一个答案。

样例输入 
Sample Input

3

6 2

7 3

7 11

样例输出 
Sample Output

1

0

10

数据范围及提示 
Data Size & Hint

1<=T<=10000

n<=109, 1<=q<=30000

分类标签 Tags 

 
 
AC代码:
#include
#include
#define ll long longusing namespace std;struct node{ int a[2][2];}ans,ss;int T,n,mod;inline node mul(node &a,node &b){ node c; for(int i=0;i<2;i++){ for(int j=0;j<2;j++){ c.a[i][j]=0; for(int k=0;k<2;k++){ c.a[i][j]=(c.a[i][j]+a.a[i][k]*b.a[k][j])%mod; } } } return c;}void fpow(int p){ for(;p;p>>=1,ss=mul(ss,ss)) if(p&1) ans=mul(ans,ss);}int main(){ scanf("%d",&T); while(T--){ scanf("%d%d",&n,&mod); if(n==1){printf("%d\n",1%mod);continue;} if(n==2){printf("%d\n",1%mod);continue;} if(n==3){printf("%d\n",2%mod);continue;} ans.a[0][0]=ans.a[1][0]=1;ans.a[0][1]=ans.a[1][1]=0; ss.a[0][0]=ss.a[1][0]=ss.a[0][1]=1;ss.a[1][1]=0; fpow(n); printf("%d\n",ans.a[0][0]); } return 0;}

 

转载于:https://www.cnblogs.com/shenben/p/5879173.html

你可能感兴趣的文章
linux下openssh完全实施方案(含公钥加密安全访问技术)
查看>>
imagemagick生成缩咯图+水印
查看>>
lpar划分
查看>>
MRv2内存监控强杀Container问题解决
查看>>
内网不能通过外网来访问内网的服务器原因分析(外网可以)
查看>>
我的友情链接
查看>>
haproxy 安装与配置以及遇到的问题
查看>>
SQL Server 事务
查看>>
Python变量、数据类型与运算符
查看>>
我的友情链接
查看>>
利用掌握的路由知识解决现实环境中的问题
查看>>
部署SCDPM 2012R2 2.部署SCDPM 2012R2
查看>>
我的友情链接
查看>>
shell 脚本1
查看>>
20160420作业
查看>>
python coding
查看>>
jquery美化select,自定义下拉框样式
查看>>
最近的一些感悟
查看>>
可以随意投射的屏幕之遐想
查看>>
Linux学习-02-远程连接SSH工具及密钥登录配置
查看>>