模板—数学—Lucas

Posted yangsongyi

tags:

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

模板—数学—Lucas

Code:

#include <cstdio>
#include <algorithm>
using namespace std;
#define N 100010
int n,m,p,inv[N],powq[N];
int lucas(int n,int m)
{
	if(n<m) return 0;
	if(n<=p&&m<=p) return 1ll*powq[n]*inv[m]%p*inv[n-m]%p;
	return 1ll*lucas(n/p,m/p)*lucas(n%p,m%p)%p;
}
int main()
{
	int T;scanf("%d",&T);
	while(T--)
	{
		scanf("%d%d%d",&n,&m,&p),n+=m; powq[0]=1,inv[p-1]=p-1;
		for(int i=1;i<=p;i++) powq[i]=1ll*powq[i-1]*i%p;
		for(int i=p-2;~i;i--) inv[i]=1ll*inv[i+1]*(i+1)%p;
		printf("%d
",lucas(n,m));
	}
}

  

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

[长期更新]模板&算法学习情况

组合数模板 - Lucas

数学:lucas定理的总结

visit:组合数学,ex_Lucas

lucas定理和组合数学

模板扩展Lucas随想