887. 求组合数 III (lucas定理)
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了887. 求组合数 III (lucas定理)相关的知识,希望对你有一定的参考价值。
https://www.acwing.com/problem/content/889/
图片摘自:https://www.acwing.com/solution/content/26553/
图片摘自: https://www.acwing.com/solution/content/5244/
这里的求组合数的函数:快速幂是在循环的里边:耗时约 1345 ms
#include<cstdio>
#include<iostream>
#include<algorithm>
using namespace std;
typedef long long int LL;
LL qmi(LL a,LL b, LL p)
{
LL res=1;
while(b)
{
if(b&1) res=res*a%p;
a=a*a%p;
b=b>>1;
}
return res;
}
LL C(LL a,LL b,LL p)
{
if(b>a) return 0;
LL res=1;
for(int i=1,j=a;i<=b;i++,j--)
{
res=res*j%p;
res=res*qmi(i,p-2,p)%p;
}
return res;
}
LL lucas(LL a,LL b,LL p)
{
if(a<p&&b<p) return C(a,b,p);
return C(a%p,b%p,p)*lucas(a/p,b/p,p)%p;
}
int main(void)
{
int t; cin>>t;
while(t--)
{
LL a,b,p; cin>>a>>b>>p;
cout<<lucas(a,b,p)<<endl;
}
return 0;
}
这里的求组合数的函数:快速幂是在循环的外边:耗时约 80 ms
#include<cstdio>
#include<iostream>
#include<algorithm>
using namespace std;
typedef long long int LL;
LL qmi(LL a,LL b, LL p)
{
LL res=1;
while(b)
{
if(b&1) res=res*a%p;
a=a*a%p;
b=b>>1;
}
return res;
}
LL C(LL a, LL b, LL p)
{
if(b > a) return 0;
if(b > a - b) b = a - b;
LL x = 1, y = 1;
for(int i = 0; i < b; i++)
{
x = x * (a - i) % p;
y = y * (i + 1) % p;
}
return x * qmi(y, p - 2, p) % p;
}
LL lucas(LL a,LL b,LL p)
{
if(a<p&&b<p) return C(a,b,p);
return C(a%p,b%p,p)*lucas(a/p,b/p,p)%p;
}
int main(void)
{
int t; cin>>t;
while(t--)
{
LL a,b,p; cin>>a>>b>>p;
cout<<lucas(a,b,p)<<endl;
}
return 0;
}
快速幂放在外面的方法来自Acwing评论区某位大神。
以上是关于887. 求组合数 III (lucas定理)的主要内容,如果未能解决你的问题,请参考以下文章