华中农业大学第五届程序设计大赛 D GCD [fibonacci+矩阵乘法]【数学】

题目链接:http://acm.hzau.edu.cn/problem.php?id=1202
————————————————————————————————————————
1202: GCD
Time Limit: 1 Sec Memory Limit: 1280 MB
Submit: 241 Solved: 44
[Submit][Status][Web Board]
Description
这里写图片描述
Input
The first line is an positive integer T . (1<=T<= 10^3) indicates the number of test cases. In the next T lines, there are three positive integer n, m, p (1<= n,m,p<=10^9) at each line.

Output
这里写图片描述

Sample Input
1
1 2 3

Sample Output
1

————————————————————————————————————————
题目大意:
就是让你求 gcd1+sumn,1+summ

解题方法:
问什么叫方法,因为暴力啊。。。

首先暴力的打了一个 1+sumn 的表,然后惊奇的发现这就是fibonacci数列

然后就变成了 gcdfibn+2,fibm+2

然后根据fibonacci数列的性质

gcdfibn+2,fibm+2=fib(gcdn+2,m+2)

所以同一个矩阵乘法就可以了

附本题代码
——————————————————————————————————————————

#include <bits/stdc++.h>
typedef long long int LL;
using namespace std;

const int N   = 2e5+7;
//const int INF = (~(1<<31));

int read(){
    int x=0,f=1;char ch = getchar();
    while(ch<'0'||ch>'9') ch = getchar();
    while('0'<=ch&&ch<='9'){x=(x<<3)+(x<<1)+ch-'0';ch = getchar();}
    return x;
}
/*******************************************/
int n,m,MOD;
const int M = 2;
struct Matrix{
    LL m[M][M];
    void clear0(){
        for(int i=0;i<M;i++)
            for(int j=0;j<M;j++)
                m[i][j]=0;
    }
    void clearE(){
        for(int i=0;i<M;i++)
            for(int j=0;j<M;j++)
                m[i][j]=(i==j);
    }
};

Matrix operator *(Matrix &a,Matrix &b){
    Matrix c;c.clear0();

    for(int k=0;k<M;k++)
        for(int i=0;i<M;i++)
            for(int j=0;j<M;j++)
                c.m[i][j]=(c.m[i][j]+a.m[i][k]*b.m[k][j]+MOD)%MOD;

    return c;
}

Matrix operator ^(Matrix &a,LL b){
    Matrix c;c.clearE();
    while(b){
        if(b&1) c=c*a;
        b>>=1,a=a*a;
    }
    return c;
}

LL solve(int x){
    Matrix a,b;
    a.m[0][0]=0,a.m[0][1]=1;
    b.m[0][0]=0,b.m[0][1]=1;
    b.m[1][0]=1,b.m[1][1]=1;
    b=b^x;a=a*b;
    return a.m[0][0];
}

int main(){
    int _=read();
    while(_--){
        n=read(),m=read(),MOD=read();
        printf("%lld\n",solve(__gcd(n+2,m+2)));
    }
    return 0;
}
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值