组合数+逆元
Posted nonames
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了组合数+逆元相关的知识,希望对你有一定的参考价值。
1、逆元线性筛
const int mod = 1e; const int maxn = 10005; int inv[maxn]; inv[1] = 1; for(int i = 2; i < 10000; i++) inv[i] = inv[mod % i] * (mod - mod / i) % mod;
2、阶乘逆元线性筛
inv[N]=qpow(fac[N],mod-2); for(ll i=N-1;i>=0;i--) inv[i]=(inv[i+1]*(i+1))%mod;
以上是关于组合数+逆元的主要内容,如果未能解决你的问题,请参考以下文章