码迷,mamicode.com
首页 > 其他好文 > 详细

Fibonacci PKU

时间:2019-02-01 19:51:39      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:multi   span   include   bsp   fas   pku   div   style   code   

矩阵的快速幂

#include<cstdio>
using namespace std;

struct  matrix
{
    int m[2][2];

}ans,base;

matrix  multi( matrix a,matrix b )//矩阵乘法
{
    matrix temp;
    for(int i=0;i<2;i++)
    {
        for(int j=0;j<2;j++)
        {
            temp.m[i][j]=0;
            for(int k=0;k<2;k++)
                temp.m[i][j]=(temp.m[i][j]+a.m[i][k]*b.m[k][j])%10000;
        }
    }

 return temp;
}


int fast(matrix a,  int n)//矩阵快速幂
{

    ans.m[0][0]=ans.m[1][1]=1;//初始化为单位矩阵
    ans.m[0][1]=ans.m[1][0]=0;
    while(n)
    {
        if(n&1)
        {
            ans=multi(ans,a);
        }
        a=multi(a,a);
        n>>=1;
    }
    return ans.m[0][1];
}

int main()
{
    int n;
    while(scanf("%d",&n)&&n!=-1)
    {
        base.m[0][0]=base.m[1][0]=base.m[0][1]=1;
        base.m[1][1]=0;

        printf("%d\n",fast(base,n));

    }
    return 0;
}

 

Fibonacci PKU

标签:multi   span   include   bsp   fas   pku   div   style   code   

原文地址:https://www.cnblogs.com/bxd123/p/10346763.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!