求有多少种长度为 n 的序列 A,满足以下条件:
1 ~ n 这 n 个数在序列中各出现了一次
若第 i 个数 A[i] 的值为 i,则称 i 是稳定的。序列恰好有 m 个数是稳定的
满足条件的序列可能很多,序列数对 10^9+7 取模。
标签:
题目链接:
输出 T 行,每行一个数,表示求出的序列数
/************************************************************** Problem: 4517 User: LittlePointer Language: C++ Result: Accepted Time:11108 ms Memory:16916 kb ****************************************************************/ #include <bits/stdc++.h> using namespace std; typedef long long LL; const LL mod=1e9+7; const int maxn=1e6+10; LL dp[maxn],p[maxn]; inline void init() { dp[0]=1;dp[1]=0;dp[2]=1;p[1]=1;p[2]=2;p[0]=1; for(int i=3;i<maxn;i++)dp[i]=(LL)(i-1)*(dp[i-1]+dp[i-2])%mod,p[i]=p[i-1]*(LL)i%mod; } LL pow_mod(LL x,LL y) { LL s=1,base=x; while(y) { if(y&1)s=s*base%mod; base=base*base%mod; y>>=1; } return s; } int main() { //freopen("in.txt","r",stdin); init(); int t,n,m; scanf("%d",&t); while(t--) { scanf("%d%d",&n,&m); if(m>n){puts("0");continue;} LL ans=p[n]*dp[n-m]%mod,temp=p[m]*p[n-m]%mod; ans=ans*pow_mod(temp,mod-2)%mod; printf("%lld\n",ans); } return 0; }
bzoj-4517 4517: [Sdoi2016]排列计数(组合数学)
标签:
原文地址:http://www.cnblogs.com/zhangchengc919/p/5983049.html