[SSL1530] Fibonacci Sequence III [Matrix Multiplication]

Insert picture description here

analysis

Consider a 1×3 matrix [f [n − 2], f [n − 1], 1] [f[n-2],f[n-1],1]f[n2],f[n1],1 ] , I hope to find a 3×3 matrix A, so that this 1×3 matrix is ​​multiplied by A to get the matrix:[f [n − 1], f [n], 1] = [f [n − 1] , f [n − 1] + f [n − 2] + 1, 1】 【f[n-1],f[n],1】=【f[n-1],f[n-1]+ f[n-2]+1,1】f[n1],f[n],1f[n1],f[n1]+f[n2]+1,1 ] It is easy to construct this 3×3 matrix A, that is, the
Insert picture description here
rest is the template.

Upload code

#include<iostream>
#include<cstdio>
#include<algorithm>
using namespace std;
typedef long long ll;
ll n;
const int mod=9973;
struct matrix
{
    
    
	ll m,n;
	ll f[20][20];
}st,A,B;

matrix operator *(matrix a,matrix b)
{
    
    
	matrix C;
	C.n=a.n;C.m=b.m;
	for(int i=1;i<=C.n;i++)
    {
    
    
    	for(int j=1;j<=C.m;j++)
    	{
    
    
    		C.f[i][j]=0;
		}
	}
	for(int k=1;k<=a.m;k++)
	{
    
    
		for(int i=1;i<=a.n;i++)
		{
    
    
			for(int j=1;j<=b.m;j++)
			{
    
    
				C.f[i][j]=(C.f[i][j]+a.f[i][k]*b.f[k][j]%mod)%mod;
			}
		}
	}
	return C;
}

void ksm(ll x)
{
    
    
	if(x==1)
	{
    
    
		A=st;
		return;
	}
	ksm(x/2);
	A=A*A;
	if(x&1) A=A*st;
}

int main()
{
    
    
	cin>>n;
	st.n=3;st.m=3;
	st.f[1][1]=0;st.f[1][2]=1;st.f[1][3]=0;
	st.f[2][1]=1;st.f[2][2]=1;st.f[2][3]=0;
	st.f[3][1]=0;st.f[3][2]=1;st.f[3][3]=1;
	if(n<=2)
	{
    
    
		cout<<1;
		return 0;
	}
	else
	{
    
    
		B.m=3;B.n=1;
		B.f[1][1]=1;B.f[1][2]=1;B.f[1][3]=1;
		ksm(n-1);
		B=B*A;
		cout<<B.f[1][1];
	}
	return 0;
} 

Guess you like

Origin blog.csdn.net/dglyr/article/details/111749289