码迷,mamicode.com
首页 > 其他好文 > 详细

BZOJ 4517 组合数+错排

时间:2017-04-01 09:46:59      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:合数   sre   pow   turn   style   class   pre   错排   span   

思路:

预处理错排

然后C(n,m)*s[n-m-1]就是答案了

特判n-m-1<0

//By SiriusRen
#include <cstdio>
using namespace std;
#define int long long
const int mod=1000000007,N=1000050;
int cases,n,m,fac[N],s[N];
int pow(int x,int y){
    int res=1;
    while(y){
        if(y&1)res=res*x%mod;
        x=x*x%mod,y>>=1;
    }return res;
}
int C(int x,int y){return fac[x]*pow(fac[x-y],mod-2)%mod*pow(fac[y],mod-2)%mod;}
signed main(){
    scanf("%lld",&cases);fac[0]=s[1]=1;
    for(int i=1;i<N;i++)fac[i]=fac[i-1]*i%mod;
    for(int i=2;i<N;i++)s[i]=(s[i-1]+s[i-2])*i%mod;
    while(cases--){
        scanf("%lld%lld",&n,&m);
        printf("%lld\n",C(n,m)*s[n-m-1<0?1:n-m-1]%mod);
    }
}

 

BZOJ 4517 组合数+错排

标签:合数   sre   pow   turn   style   class   pre   错排   span   

原文地址:http://www.cnblogs.com/SiriusRen/p/6654377.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!