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

UVA 11077 - Find the Permutations(递推)

时间:2014-07-18 15:10:12      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   width   

UVA 11077 - Find the Permutations

题目链接

题意:给定n,k求出有多少个包含元素[1-n]的序列,交换k次能得到一个[1,2,3...n]的序列

思路:递推dp[i][j]表示i个元素需要j次,那么在新加一个元素的时候,添在最后面次数不变,其余位置都是次数+1,这是可以证明的,原序列中有几个循环,需要的次数就是所有循环长度-1的和,那么对于新加一个元素,加在最后就和自己形成一个循环,次数不变,其余位置都会加入其他循环中,次数+1,因此递推式为dp(i,j)=dp(i?1,j?1)?(i?1)+dp(i?1,j)

代码:

#include <stdio.h>
#include <string.h>

const int N = 22;
int n, k;
unsigned long long dp[N][N];

int main() {
	dp[1][0] = 1;
	for (unsigned long long i = 2; i <= 21; i++) {
		for (int j = 0; j < i; j++) {
			dp[i][j] = dp[i - 1][j];
			if (j) dp[i][j] += dp[i - 1][j - 1] * (i - 1);
  		}
	}
	while (~scanf("%d%d", &n, &k) && n || k) {
		printf("%llu\n", dp[n][k]);
 	}
	return 0;
}


UVA 11077 - Find the Permutations(递推),布布扣,bubuko.com

UVA 11077 - Find the Permutations(递推)

标签:style   blog   http   color   os   width   

原文地址:http://blog.csdn.net/accelerator_/article/details/37927731

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