AcWing 886. 组合计数II
原题链接
简单
作者:
大笔筒
,
2022-03-20 15:30:21
,
所有人可见
,
阅读 227
#include<iostream>
#include<algorithm>
#include<cstring>
using namespace std;
const int N=100010,mod=1e9+7;
typedef long long LL;
int n;
LL infact[N+10],fact[N+10];
int quick_power(int a,int k,int p)
{
int res=1;
while(k!=0)
{
if(k&1!=0) res=(LL)res*a%p;
a=(LL)a*a%p;
k>>=1;
}
return res;
}
int main()
{
ios::sync_with_stdio(false);
fact[0]=1,infact[0]=1;
for(int i=1;i<N;i++)
{
fact[i]=(LL)fact[i-1]*i%mod;
infact[i]=(LL)infact[i-1]*quick_power(i,mod-2,mod)%mod;
}
cin>>n;
while(n--)
{
int a,b;cin>>a>>b;
printf("%d\n",((LL)fact[a]*infact[b]%mod*infact[a-b]%mod)%mod);
}
return 0;
}