程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> HDU 4549 M斐波那契數列(矩陣快速冪)

HDU 4549 M斐波那契數列(矩陣快速冪)

編輯:C++入門知識

HDU 4549 M斐波那契數列(矩陣快速冪)


Problem Description M斐波那契數列F[n]是一種整數數列,它的定義如下:

F[0] = a
F[1] = b
F[n] = F[n-1] * F[n-2] ( n > 1 )

現在給出a, b, n,你能求出F[n]的值嗎?
Input 輸入包含多組測試數據;
每組數據占一行,包含3個整數a, b, n( 0 <= a, b, n <= 10^9 )
Output 對每組測試數據請輸出一個整數F[n],由於F[n]可能很大,你只需輸出F[n]對1000000007取模後的值即可,每組數據輸出一行。
Sample Input
0 1 0
6 10 2

Sample Output
0
60
通過觀察我們發現f[n]中a,b的數量變化符合斐波那契數列特征。 於是f[n]=a^k*b^m%MOD;因此我們要用矩陣快速冪去求a和b的冪 然而由於數很大,同樣要去模一個數,這就是這個題的坑點。 求和後用快速冪求f[n]就簡單了。同樣此題要注意前兩項。
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
#define REPF( i , a , b ) for ( int i = a ; i <= b ; ++ i )
#define REP( i , n ) for ( int i = 0 ; i < n ; ++ i )
#define CLEAR( a , x ) memset ( a , x , sizeof a )
typedef long long LL;
typedef pairpil;
const int INF = 0x3f3f3f3f;
const int MOD=1e9+6;
LL a,b,n;
struct Matrix{
    LL mat[2][2];
    void Clear()
    {
        CLEAR(mat,0);
    }
};
Matrix mult(Matrix m1,Matrix m2)
{
    Matrix ans;
    for(int i=0;i<2;i++)
        for(int j=0;j<2;j++)
        {
            ans.mat[i][j]=0;
            for(int k=0;k<2;k++)
                ans.mat[i][j]=(ans.mat[i][j]+m1.mat[i][k]*m2.mat[k][j])%MOD;
        }
    return ans;
}
Matrix Pow(Matrix m1,LL b)
{
    Matrix ans;ans.Clear();
    for(int i=0;i<2;i++)
        ans.mat[i][i]=1;
    while(b)
    {
        if(b&1)
            ans=mult(ans,m1);
        b>>=1;
        m1=mult(m1,m1);
    }
    return ans;
}
LL quick_mod(LL a,LL b)
{
    LL ans=1;
    while(b)
    {
        if(b&1)
            ans=ans*a%1000000007;
        b>>=1;
        a=a*a%1000000007;
    }
    return ans;
}
int main()
{
    while(~scanf("%lld%lld%lld",&a,&b,&n))
    {
         Matrix A;
         if(n<=1)
         {
             printf("%lld\n",n==0?a:b);
             continue;
         }
         A.mat[0][0]=A.mat[0][1]=1;
         A.mat[1][0]=1;A.mat[1][1]=0;
         A=Pow(A,n-1);
         LL m,k;
         m=(A.mat[0][0])%MOD;k=(A.mat[0][1])%MOD;
         LL ans=1;
         ans=ans*quick_mod(a,k)%1000000007;
         ans=ans*quick_mod(b,m)%1000000007;
         printf("%lld\n",ans);
    }
    return 0;
}



  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved