斐波那契數列Ⅳ【矩陣乘法】
>Link
ssl 1531
>Description
求 f n = f n − 1 + f n − 2 + n + 1 f_n=f_{n-1}+f_{n-2}+n+1 fn=fn−1+fn−2+n+1 的第 N N N項,其中 f 1 = f 2 = 1 f_1=f_2=1 f1=f2=1
>解題思路
這道題仍然是矩陣乘法例題,思路同斐波那契數列Ⅱ和斐波拉契數列Ⅲ
打題解打得不想說話了╥﹏╥
A
A
A矩陣為
[
1
1
3
1
]
\begin{bmatrix} 1 &1 &3 &1 \end{bmatrix}
[1131]
B B B矩陣為 [ 0 1 0 0 1 1 0 0 0 1 1 0 0 1 1 1 ] \begin{bmatrix} 0 &1 &0 &0 \\ 1 & 1 &0 &0 \\ 0& 1& 1& 0\\ 0 & 1 & 1 & 1 \end{bmatrix} ⎣⎢⎢⎡0100111100110001⎦⎥⎥⎤
>程式碼
#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <cmath>
#define LL long long
using namespace std;
const LL p = 9973;
struct matrix
{
int x, y;
LL a[10][10];
} A, B, ans;
LL n;
matrix operator *(matrix a, matrix b)
{
matrix c;
c.x = a.x, c.y = b.y;
for (int i = 1; i <= c.x; i++)
for (int j = 1; j <= c.y; j++) c.a[i][j] = 0;
for (int k = 1; k <= a.y; k++)
for (int i = 1; i <= a.x; i++)
for (int j = 1; j <= b.y; j++)
c.a[i][j] = (c.a[i][j] + a.a[i][k] * b.a[k][j] % p) % p;
return c;
}
void power (LL k)
{
if (k == 1) {B = A; return;}
power (k >> 1);
B = B * B;
if (k & 1) B = B * A;
}
int main()
{
scanf ("%lld", &n);
if (n == 1 || n == 2) {printf ("1"); return 0;}
A.x = A.y = 4;
A.a[1][1] = A.a[1][3] = A.a[1][4] = A.a[2][3] = 0;
A.a[2][4] = A.a[3][1] = A.a[3][4] = A.a[4][1] = 0;
A.a[1][2] = A.a[2][1] = A.a[2][2] = A.a[3][2] = 1;
A.a[3][3] = A.a[4][2] = A.a[4][3] = A.a[4][4] = 1;
power (n - 1);
ans.x = 1, ans.y = 4;
ans.a[1][1] = ans.a[1][2] = ans.a[1][4] = 1;
ans.a[1][3] = 3;
ans = ans * B;
printf ("%lld", ans.a[1][1]);
return 0;
}
相關文章
- hdu 3117矩陣+斐波那契數列矩陣
- 斐波那契數列
- 斐波那契數列(Java)Java
- 從斐波那契到矩陣快速冪矩陣
- HDU 1588 斐波那契數列數列變形和矩陣連乘矩陣
- HDU 4549 M斐波那契數列(矩陣快速冪+費馬小定理)矩陣
- 斐波那契數列 (C#)C#
- PHP 與斐波那契數列PHP
- 斐波那契數列詳解
- 斐波那契數
- HDU 4549M斐波那契數列(矩陣快速冪+費馬小定理)矩陣
- js實現斐波那契數列JS
- 斐波那契數列js 實現JS
- 斐波那契數列演算法演算法
- 斐波那契數列的第N項(1≤n≤10^18 矩陣快速冪)矩陣
- 演算法(1)斐波那契數列演算法
- 面試題9-斐波那契數列面試題
- [C103] 斐波那契數列
- 使用Python實現斐波那契數列Python
- JavaScript 實現:輸出斐波那契數列JavaScript
- js迭代器實現斐波那契數列JS
- 演算法一:斐波那契阿數列演算法
- 斐波那契數列的分治法計算
- 斐波那契數列的python實現Python
- 大數斐波那契數列的演算法演算法
- Leedcode-斐波那契數
- 斐波那契數列三種實現函式函式
- 計算斐波那契數列的演算法演算法
- 劍指offer-9-斐波那契數列-javaJava
- 斐波那契數列演算法 JS 實現演算法JS
- 斐波那契查詢
- 斐波那契數列的通項公式及證明公式
- 每日一算 -- 斐波那契數列型別題型別
- 斐波那契數列 多語言實現 筆記筆記
- js計算斐波那契數列程式碼例項JS
- fibonacci斐波那契數列詳解 遞迴求Fn非遞迴求Fn求n最近的斐波那契數遞迴
- 斐波那契數(C/C++,Scheme)C++Scheme
- 如何將斐波那契數列應用到排版設計中