AcWing 887. 求组合数 III(Lucas定理)

Posted MangataTS

tags:

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

题面连接

https://www.acwing.com/problem/content/description/889/

思路

我们会发现我们的模数要远小于我们要求得组合数,并且模数p是一个质数,那么我们就可以使用lucas定理来帮我们快速求解次问题,Lucas定理: C a b   m o d   p = C a   m o d   p b   m o d   p × l u c a s ( a / p , b / p )   m o d   p C_a ^b \\ mod\\ p = C_a \\ mod \\ p ^b \\ mod \\ p \\times lucas(a/p,b/p) \\ mod \\ p Cab mod p=Ca mod pb mod p×lucas(a/p,b/p) mod p
在模p的情况下,那么我们很容就能写这个思路的代码,当然我们在处理组合数的计算的时候可以先预处理阶乘或者直接计算,在本题访问次数较少的情况下我们两种做法都可以

关于Lucas定理的证明可以参见:
https://www.cnblogs.com/onlyblues/p/15339937.html

代码

预处理阶乘

用时:4047 ms

#include<bits/stdc++.h>
using namespace std;
//----------------自定义部分----------------
#define ll long long
#define endl "\\n"
#define PII pair<int,int>
#define INF 0x3f3f3f3f

int dx[4] = -1, 0, 1, 0, dy[4] = 0, 1, 0, -1;
const int N = 2e6+10;
ll t,n,m,q,fact[N],invfact[N],mod;
ll ksm(ll a,ll b) 
	ll ans = 1;
	for(;b;b>>=1LL) 
		if(b & 1) ans = ans * a % mod;
		a = a * a % mod;
	
	return ans;


ll lowbit(ll x)return -x & x;


//----------------自定义部分----------------


void init()
	invfact[0]= fact[0] = 1;//初始化
	for(int i = 1;i < N; ++i) 
		fact[i] = fact[i-1] * i % mod;
		invfact[i] = ksm(fact[i],mod-2);
	

ll C(ll a,ll b)
	return (fact[a] * invfact[a-b]) % mod * invfact[b] % mod ;

ll lucas(ll a,ll b,ll p)
	if(a < p && b < p) return C(a,b);
	else return lucas(a/p,b/p,p) * C(a % p,b % p) % p;

void slove()
	ll a,b;
	cin>>a>>b>>mod;
	init();
	cout<<lucas(a,b,mod)<<endl;


int main()

	ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
	
	cin>>t;
	while(t--)
		slove();
	
	
	return 0;

直接计算

用时:97ms

#include <iostream>
#include <algorithm>

using namespace std;

typedef long long LL;


int qmi(int a, int k, int p)

    int res = 1;
    while (k)
    
        if (k & 1) res = (LL)res * a % p;
        a = (LL)a * a % p;
        k >>= 1;
    
    return res;



int C(int a, int b, int p)

    if (b > a) return 0;

    LL resL = 1,resR = 1;
    for (int i = 1, j = a; i <= b; i ++, j -- )
    
        resL = (LL)resL * j % p;
        resR = (LL)resR * i % p;
    
    return resL * qmi(resR,p-2,p) % p;



int lucas(LL a, LL b, int p)

    if (a < p && b < p) return C(a, b, p);
    return (LL)C(a % p, b % p, p) * lucas(a / p, b / p, p) % p;



int main()

    int n;
    cin >> n;

    while (n -- )
    
        LL a, b;
        int p;
        cin >> a >> b >> p;
        cout << lucas(a, b, p) << endl;
    

    return 0;


以上是关于AcWing 887. 求组合数 III(Lucas定理)的主要内容,如果未能解决你的问题,请参考以下文章

887. 求组合数 III(模板 卢卡斯定理)

AcWing 885. 求组合数 I(递推式预处理)

885. 求组合数 I

AcWing 888. 求组合数 IV(高精度求组合数问题)

AcWing 886. 求组合数 II(预处理阶乘)

888. 求组合数 IV 高精度