码迷,mamicode.com
首页 > 其他好文 > 详细

快速幂+斐波那契数列

时间:2018-11-16 17:32:27      阅读:306      评论:0      收藏:0      [点我收藏+]

标签:res   targe   problem   bsp   stream   scan   using   end   斐波那契数列   

题意:

给出 a, b ,n。

求 f(a^b)%n的值。f()是斐波那契数列。

UVA 11582

代码:

#include<stdio.h>
#include<iostream>
#include<algorithm>
#include<bits/stdc++.h>
typedef unsigned long long ll;
using namespace std;
ll f[1000005];
ll pow_mod(ll a,ll n,ll mod)
{
   ll res=1;
    while(n>0)
    {
        if(n&1)
            res=res*a%mod;
        a=(a%mod)*(a%mod)%mod;
        n>>=1;
    }
    return res;
}
int main()
{
    int t;
    scanf("%d",&t);
    while(t--)
    {
       ll a,b,n,mod;
       cin>>a>>b>>n;
       f[1]=1%n,f[2]=1%n;
       for(int i=3;;i++)
       {
           f[i]=f[i-1]+f[i-2];
           f[i]%=n;
           if(f[i]==f[2]&&f[i-1]==f[1])
           {
               mod=i-2;
               break;
           }
       }
       ll x=pow_mod(a,b,mod);
       cout<<f[x]<<endl;
    }
    return 0;
}

 

快速幂+斐波那契数列

标签:res   targe   problem   bsp   stream   scan   using   end   斐波那契数列   

原文地址:https://www.cnblogs.com/linhaitai/p/9969785.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!