多学习。

【数论】Acwing1303.斐波那契数论前n项和(快速幂求斐波那契)

题目

题解


#include <iostream>
#include <cstring>

using namespace std;
typedef long long LL;
const int N = 3;
int n, m;
void mult(int c[], int a[], int b[][N])
{
    int temp[N] = {0};
    for(int i = 0; i < N; ++i)
        for(int j = 0; j < N; ++j)
            temp[i] = (temp[i] + (LL)a[j] * b[j][i]) % m;
    memcpy(c, temp, sizeof temp);
}

void mult(int c[][N], int a[][N], int b[][N])
{
    int temp[N][N] = {0};
    
    for(int i = 0; i < N; ++i)
    for(int j = 0; j < N; ++j)
    {
        for(int k = 0; k < N; ++k)
        {
            temp[i][j] = (temp[i][j] + (LL)a[i][k] * b[k][j]) % m;
        }
    }
    
    memcpy(c, temp, sizeof temp);
}

int main()
{
    cin >> n >> m;
    
    int f1[N] = {1, 1, 1};
    int A[N][N] = {{0,1,0},{1,1,1},{0,0,1}};
    
    n --;
    
    while(n)
    {
        if(n & 1) mult(f1, f1, A); //res *= a
        mult(A, A, A);
        n >>= 1;
    }
    
    cout << f1[2] << endl;
    return 0;
}

posted @   czyaaa  阅读(25)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· 没有Manus邀请码?试试免邀请码的MGX或者开源的OpenManus吧
· 【自荐】一款简洁、开源的在线白板工具 Drawnix
· 园子的第一款AI主题卫衣上架——"HELLO! HOW CAN I ASSIST YOU TODAY
· Docker 太简单,K8s 太复杂?w7panel 让容器管理更轻松!
点击右上角即可分享
微信分享提示