[ACM] SDUT 2883 Hearthstone II (第二类Stiring数)

Hearthstone II

Time Limit: 2000ms   Memory limit: 65536K  有疑问?点这里^_^

题目描述

The new season has begun, you have n competitions and m well prepared decks during the new season. Each competition you could use any deck you want, but each of the decks must be used at least once. Now you wonder how many ways are there to plan the season — to decide for each competition which deck you are going to used. The number can be very huge, mod it with 10^9 + 7.
 

输入

The input file contains several test cases, one line for each case contains two integer numbers n and m (1 ≤ m ≤ n ≤ 100).
 

输出

One line for each case, output one number — the number of ways.

示例输入

3 2
100 25

示例输出

6
354076161

提示

 

来源

2014年山东省第五届ACM大学生程序设计竞赛


解题思路:

题意为n个竞赛要用到m张桌子,每张桌子至少被用一次,桌子不同,问一共有多少种安排方法。

也就是把n个元素分到m个非空且不可区分的集合中去。第二类Stiring数   s(n,m)意思是把n个元素分到m个非空且不可区分的集合中去。本题集合(桌子)是可区分的,那么答案为

m! *s(n,m).

知识详解见:http://blog.youkuaiyun.com/sr_19930829/article/details/40888349

代码:

#include <iostream>  
#include <string.h>  
using namespace std;  
const int maxn=102;  
const int mod=1e9+7;  
typedef long long ll;  
ll s[maxn][maxn];  
int n, m;  
  
void init()  
{  
    memset(s,0,sizeof(s));  
    s[1][1]=1;  
    for(int i=2;i<=100;i++)  
        for(int j=1;j<=i;j++)  
            {  
                s[i][j]=s[i-1][j-1]+j*s[i-1][j];  
                if(s[i][j]>=mod)  
                    s[i][j]%=mod;  
            }  
}  
  
ll solve(int n,int m)  
{  
    ll ans=s[n][m];  
    for(int i=2;i<=m;i++)  
    {  
        ans*=i;  
        if(ans>=mod)  
            ans%=mod;  
    }  
    return ans;  
}  
  
int main()  
{  
    init();  
    while(cin>>n>>m)  
    {  
        cout<<solve(n,m)<<endl;  
    }  
    return 0;  
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值