hdu_6050: Funny Function (2017 多校第二场 1006) 找规律

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hdu_6050: Funny Function (2017 多校第二场 1006) 找规律相关的知识,希望对你有一定的参考价值。

题目链接

暴力打个表找下规律就好了,比赛时看出规律来了倒是,然而看这道题看得太晚了,而且高中的那些数列相关的技巧生疏了好多,然后推公式就比较慢。。其实还是自身菜啊。。

公式是

技术分享

 

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

const LL mod=1e9+7; 
LL qpow(LL x,LL n)        //求x^n%mod 
{
    LL ret=1;
    for(; n; n>>=1)
    {
        if(n&1) ret=ret*x%mod;
        x=x*x%mod;
    }
    return ret;
}
LL inv(LL x)
{
    return qpow(x,mod-2);
}

int T;
LL n,m;
LL ans;

int main()
{
    scanf("%d",&T);
    while(T--)
    {
        scanf("%lld%lld",&n,&m);
        if(n&1)    ans=(qpow(qpow(2,n)-1,m-1)*2%mod+1)*inv(3)%mod;
        else ans=qpow(qpow(2,n)-1,m-1)*2%mod*inv(3)%mod;
        printf("%lld\\n",ans);
    }
}

 

以上是关于hdu_6050: Funny Function (2017 多校第二场 1006) 找规律的主要内容,如果未能解决你的问题,请参考以下文章

hdu 6050 Funny Function 矩阵快速幂

HDU 6050 Funny Function —— 2017 Multi-University Training 2

hdu 5902 GCD is Funny

GCD is Funny(hdu 5902)

HDU 5902 GCD is Funny DP

[HDU5902]GCD is Funny(xjb搞)