前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >codeforce 227E 矩阵快速幂求斐波那契+N个连续数求最大公约数+斐波那契数列的性质

codeforce 227E 矩阵快速幂求斐波那契+N个连续数求最大公约数+斐波那契数列的性质

作者头像
风骨散人Chiam
发布2020-10-28 09:36:24
4240
发布2020-10-28 09:36:24
举报
文章被收录于专栏:CSDN旧文

E. Anniversary time limit per test2 seconds memory limit per test256 megabytes inputstandard input outputstandard output There are less than 60 years left till the 900-th birthday anniversary of a famous Italian mathematician Leonardo Fibonacci. Of course, such important anniversary needs much preparations.

Dima is sure that it’ll be great to learn to solve the following problem by the Big Day: You’re given a set A, consisting of numbers l, l + 1, l + 2, …, r; let’s consider all its k-element subsets; for each such subset let’s find the largest common divisor of Fibonacci numbers with indexes, determined by the subset elements. Among all found common divisors, Dima is interested in the largest one.

Dima asked to remind you that Fibonacci numbers are elements of a numeric sequence, where F1 = 1, F2 = 1, Fn = Fn - 1 + Fn - 2 for n ≥ 3.

Dima has more than half a century ahead to solve the given task, but you only have two hours. Count the residue from dividing the sought largest common divisor by m.

Input The first line contains four space-separated integers m, l, r and k (1 ≤ m ≤ 109; 1 ≤ l < r ≤ 1012; 2 ≤ k ≤ r - l + 1).

Please, do not use the %lld specifier to read or write 64-bit integers in С++. It is preferred to use cin, cout streams or the %I64d specifier.

Output Print a single integer — the residue from dividing the sought greatest common divisor by m.

Examples inputCopy 10 1 8 2 outputCopy 3 inputCopy 10 1 8 3 outputCopy 1 题意很简单,就是给你第L到第R个斐波那契额数列,让你选K个求K个数的最大公约数模MOD; 在这里首先要明确性质,斐波那契数列第K个数与第S个数的最大公约数是,第N个斐波那契数,N为S与K的最大公约数。 所以这个题转化为先求N选K的最大公约数+矩阵快速幂求斐波那契,N选K的数的最大公约数,因为K是连续的,所有有这个性质,每N个数一定有一个N的倍数,这是后应该判断K与区间长度的关系,再判断L与R,与N的关系,选取最大值即为K组的最大公约数。 带入最大公约数到矩阵快速幂即可。 矩阵快速幂 https://blog.csdn.net/weixin_43627118/article/details/97394804

代码语言:javascript
复制
#include<bits/stdc++.h>
using namespace std;
int MOD=1e8+5;
const int maxn=2; //定义方阵的阶数
struct JZ{  long long  m[maxn][maxn];   };//定义maxn阶方阵
JZ muti(JZ a,JZ b,int mod);
JZ quick_mod(JZ a,long long  k,int mod);
bool chk(long long  u, long long   L, long long   R, long long   K) {
	if(u == 0) {
		return 0;
	}
	return (R / u) - ((L - 1) / u) >= K;
}
int main()
{
    long long L,R,K;
	cin >> MOD >> L >> R >> K;
	long long  te = 0;
	for(long long  i = 1; i * i <= R; i++) {
		if(chk(i, L, R, K)) {
			te = max(te, i);
		}
	}
	for(long long  bs = 1; bs * bs <= R; bs++) {
		if(chk(R / bs, L, R, K)) {
			te = max(te, R / bs);
		}
	}
	for(long long  bs = 1; bs * bs <= L - 1; bs++) {
		if((chk(((L - 1) / bs) - 1, L, R, K))) {
			te = max(te, ((L - 1) / bs) - 1);
        }
	}
    JZ demo,ans;
    demo.m[0][0]=0;    demo.m[0][1]=1;    demo.m[1][0]=1;    demo.m[1][1]=1;
    ans=quick_mod(demo,te,MOD);
    cout<<ans.m[1][0]<<endl;
}
JZ muti(JZ a,JZ b,int mod)
{
    JZ temp;
    memset(temp.m,0,sizeof(temp.m));
    for(int i=0;i<maxn;i++)
        for(int j=0;j<maxn;j++){
            for(int k=0;k<maxn;k++)
            {
                temp.m[i][j]+=(long long) a.m[i][k]*b.m[k][j]%mod;
            }
            temp.m[i][j]%=mod;
        }
    return temp;
}
JZ quick_mod(JZ a,long long k,int mod)
{
    JZ ans;
    for(int i=0;i<maxn;i++)
        for(int j=0;j<maxn;j++)
            ans.m[i][j]=(i==j);
    while(k)  {
    if(k &1)  ans =muti(ans,a,mod);
    a = muti(a,a,mod);
    k >>=1;
    }
    return ans;
}
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2019/07/27 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档