The GCD of Fibonacci Numbers

链接:https://ac.nowcoder.com/acm/contest/3674/A

The Fibonacci sequence is the sequence of numbers such that every element is equal to the sum of the two previous elements, except for the first two elements f0 and f1 which are respectively zero and one. The first few numbers in the Recaman's Sequence is 0,1,1,2,3,5,8,... The ith Fibonacci number is denoted fi.

The largest integer that divides both of two integers is called the greatest common divisor of these integers. The greatest common divisor of a and b is denoted by gcd(a,b).

Two positive integers m and n are given,you must compute the GCD(fm,fn).

输入描述:

The first linecontains one integer T(T ≤ 100),the number of test cases.
For each test case,there are two positive integers m and n in one line. (1 ≤m,n ≤ 231 , GCD(m,n) ≤ 45)

输出描述:

 

 Foreach the case, your program will outputthe GCD(fm,fn).

示例1

输入

复制

4
1 2
2 3
2 4
3 6

输出

复制

1
1
1
2

一开始俺以为要用矩乘写,没想到看到别人的代码原来只要求出第gcd(n,m)项斐波那契数列就行

代码:

#include<bits/stdc++.h>
using namespace std;
int T;
long long a,b,f[110];
long long gcd(long long a,long long b){
    if (!b) return a;
    return gcd(b,a%b);
}
int main(){
    f[0]=0;
    f[1]=1;
    for(int i=2;i<=45;i++) 
        f[i]=f[i-1]+f[i-2];
    scanf("%d",&T);
    while (T--){
        scanf("%lld%lld",&a,&b);
        printf("%lld\n",f[gcd(a,b)]);
    }
}

 

全部评论

相关推荐

2025-12-28 22:19
门头沟学院 Java
不敢追165女神:简历写得毫无特点,你说你要是大二或者大三找寒假实习到暑期实习这段时间,你的简历还能约到面试。但是你是研究生哥,面试官不会因为你是研究生而降低要求,反而会觉得你是研究生才学了这么一点?为什么我不找个同阶段的本科生?
简历中的项目经历要怎么写
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务