您的位置:首页 > 其它

Hdu 4535 吉哥系列故事——礼尚往来

2013-03-30 22:13 225 查看
题目连接:

http://acm.hdu.edu.cn/showproblem.php?pid=4535

错排公式:

f(n)=(n-1)(f(n-1)+f(n-2))

代码:

#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include <vector>
#include <algorithm>
using namespace std;

#define MAXN (100+10)

__int64 f[MAXN]={0,0,1};

__int64 h = 1000000007;

int main()
{
#ifndef ONLINE_JUDGE
freopen("in.txt","r",stdin);
#endif
int t;
int n;
for (int i=3;i<=100;i++)
{
f[i]=((i-1)*f[i-1]%h+f[i-2]*(i-1)%h)%h;
}
scanf(" %d",&t);
while (t--)
{
scanf(" %d",&n);
printf("%I64d\n",f
);
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: