矩阵快速幂模板

解决大斐波那契数问题,我线代没学所以不是很理解这玩意,只好先记住以下板子了

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#include <iostream>
#include <cstdio>
using namespace std;
struct node
{
long long a[3][3];
};
node mul(node a,node b)
{
node c;
for(int i=1;i<=2;i++)
for(int j=1;j<=2;j++)
{
c.a[i][j]=0;
for(int k=1;k<=2;k++)
c.a[i][j]+=(a.a[i][k]*b.a[k][j]);
c.a[i][j]%=1000000007;
}
return c;
}
node qp(node a,int b)
{
node ans;
ans.a[1][1]=ans.a[1][2]=ans.a[2][1]=1;
ans.a[2][2]=0;
while(b)
{
if(b&1)
ans=mul(ans,a);
a=mul(a,a);
b>>=1;
}
return ans;
}
int main()
{
int n,t;
scanf("%d",&t);
while(t--)
{
scanf("%d",&n);
if(n==-1)
break;
node now;
now.a[1][1]=now.a[1][2]=now.a[2][1]=1;
now.a[2][2]=0;
if(n==0)
{
printf("0\n");
continue;
}
if(n<=2&&n>0)
printf("1\n");
else
printf("%d\n",qp(now,n-2).a[1][1]);
}
}
就算是一分钱,也是对作者极大的支持
------ 本文结束 ------

版权声明

Baccano by baccano is licensed under a Creative Commons BY-NC-ND 4.0 International License.
baccano创作并维护的Baccano博客采用创作共用保留署名-非商业-禁止演绎4.0国际许可证
本文首发于baccano 博客( http://baccano.fun ),版权所有,侵权必究。

小游戏

---小游戏:要不要来选择一下自己可能的老婆?---

简易发声器

---简易的七键钢琴插件---

可以使用鼠标点击琴键也可以使用主键盘1-7或者小键盘的1-7来操作

那么现在开始吧

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
0%