数论Lucas定理

Posted sky-zxz

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数论Lucas定理相关的知识,希望对你有一定的参考价值。

其实这个算法挺简单的

Lucas定理:C(n,m)%p=C(n/p,m/p)*C(n%p,m%p)%p

很明显,这个可以递归求解。

传统的算组合数的方法是需要计算阶乘的,当n和m到了一个很大的数字,那么这种方法的时间复杂度就过不去,而这时Lucas定理就派上了用场。

时间复杂度:O(logp(n)*p)

 

模板题:链接

 

代码:

 

#include<iostream>
#include<cstdio>
#include<cmath>
#include<cstring>
#include<algorithm>
#define ll long long int
using namespace std;
ll t,p;
ll ksm(ll a,ll b){
    ll tot=1;
    while(b){
        if(b&1){
        tot=(tot*a)%p;    
        }
        a=(a*a)%p;
        b>>=1;
    }
    return tot;
}
ll c(ll n,ll m){
    if(m>n)return 0;
    ll t1=1,t2=1;
    for(register int i=n-m+1;i<=n;i++)t1=(t1*i)%p;
    for(register int i=1;i<=m;i++)t2=(t2*i)%p;
    return t1*ksm(t2,p-2)%p;
}
ll lucas(ll n,ll m){
    if(!m)return 1;
    else
    return (lucas(n/p,m/p)*c(n%p,m%p))%p;
}
int main(){
    scanf("%lld",&t);
    while(t){
    t--;
    ll n,m;
    scanf("%lld%lld%lld",&n,&m,&p);
    printf("%lld
",lucas(n+m,m));
    }
    return 0;
}

 

以上是关于数论Lucas定理的主要内容,如果未能解决你的问题,请参考以下文章

数论——lucas定理

Lucas定理 中国剩余定理 数论

Bzoj 4591: [Shoi2015]超能粒子炮·改 数论,Lucas定理,排列组合

CPC23-4-K. 喵喵的神数 (数论 Lucas定理)

《算法问题实战策略》-chaper14-整数论

数论基础题 费马引理+卡特兰数+Lucas定理+同余方程+扩欧