Permutation Counting

Given a permutation a1, a2, … aN of {1, 2, …, N}, we define its E-value as the amount of elements where ai > i. For example, the E-value of permutation {1, 3, 2, 4} is 1, while the E-value of {4, 3, 2, 1} is 2. You are requested to find how many permutations of {1, 2, …, N} whose E-value is exactly k.

InputThere are several test cases, and one line for each case, which contains two integers, N and k. (1 <= N <= 1000, 0 <= k <= N). 
OutputOutput one line for each case. For the answer may be quite huge, you need to output the answer module 1,000,000,007.Sample Input

3 0
3 1

Sample Output

1
4

Hint

There is only one permutation with E-value 0: {1,2,3}, and there are four permutations with E-value 1: {1,3,2}, {2,1,3}, {3,1,2}, {3,2,1}

数列1-n,可以随意排列组合,求恰有k个a[i]>i的排列个数。
一道找规律的dp。看数据范围就知道不能暴力求解,但可以用暴力找出n较小的几种小数列排列数,发现规律。类似杨辉三角,就像两数和靠拢,于是可以发现状态转移方程f[i][j]=(((i+1)*f[i][j-1])%MOD+((j-i)*f[i-1][j-1])%MOD)%MOD

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<string>
#include<math.h>
#include<queue>
#include<set>
#include<stack>
#include<algorithm>
#include<vector>
#include<iterator>
#define MAX 1005
#define INF 0x3f3f3f3f
#define MOD 1000000007
using namespace std; typedef long long ll; ll f[MAX][MAX]; int main()
{
int n,m,i,j;
for(i=;i<=;i++){
f[][i]=;
}
for(i=;i<=;i++){
for(j=i+;j<=;j++){
f[i][j]=(((i+)*f[i][j-])%MOD+((j-i)*f[i-][j-])%MOD)%MOD;
}
}
while(~scanf("%d%d",&n,&m)){
if(n==m){
printf("0\n");
continue;
}
printf("%lld\n",f[m][n]);
}
return ;
}
 

最新文章

  1. Unity小游戏制作 - 暗影随行
  2. JIRA学习一:Windows下安装破解JIRA6.3.6
  3. php csv导出
  4. php全面获取url地址栏及各种参数
  5. PHP--Warning: Invalid argument supplied for foreach() in ...
  6. Git的学习总结和使用时遇到的问题。
  7. FastScroll(3)分组的listview 打开fastscroll的分组提示功能
  8. RMQ——窗口题解
  9. dojo.create\dojo.place\dojo.empty\dojo.destroy\dojo.body
  10. C#中转义字符
  11. ASP.NET Core中使用GraphQL - 第二章 中间件
  12. GIT----IDEA配置git
  13. layui 常见的表单元素
  14. 谈谈那些年我们装B的并发编程
  15. poj1015 01二维背包
  16. Word批量删除所有书签
  17. [Laravel] 15 - REST API: sidebar with unit test
  18. C#配置.INI文件
  19. 【题解】Luogu P4979 矿洞:坍塌
  20. 解决pip ReadTimeoutError问题

热门文章

  1. Html控件和Web控件(转)
  2. 九度OJ 1083:特殊乘法 (基础题)
  3. java和js互调 webview
  4. python 安装coreml
  5. jzyz集训 0612
  6. 磁卡ID卡IC卡的区别【转】
  7. Zookeeper- Error contacting service. It is probably not running解决方案和原理
  8. 城市旅游ppt模板
  9. 分享知识-快乐自己:oracle表分区详解
  10. manacher(无讲解)