组合数取模 Lucas
Posted 啦啦啦天啦噜
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了组合数取模 Lucas相关的知识,希望对你有一定的参考价值。
#include <cstdio> #include <cstring> #include <algorithm> using namespace std; typedef long long ll; ll mod_pow(ll x, ll n, ll p){ ll res = 1; while(n){ if(n & 1) res =res * x % p; x = x * x % p; n >>= 1; } return res; } ll comb(ll n, ll m, ll p){ if(m > n) return 0; ll ret = 1; m = min(n - m, m); for(int i = 1; i <= m; i ++){ ll a = (n + i - m) % p; ll b = i % p; ret = ret * (a * mod_pow(b, p - 2, p) % p) % p; } return ret; } ll Lucas(ll n, ll m, ll p){ if(m == 0) return 1; return comb(n % p, m % p, p) * Lucas(n / p, m / p, p) % p; } int main(){ int T; ll n, m, p; scanf("%d", &T); while(T--){ scanf("%I64d%I64d%I64d", &n, &m, &p); printf("%I64d\n", Lucas(n, m, p)); } return 0; }
以上是关于组合数取模 Lucas的主要内容,如果未能解决你的问题,请参考以下文章