hdu 6143(精妙的递推)
发布日期:2021-06-29 21:40:28 浏览次数:12 分类:技术文章

本文共 3626 字,大约阅读时间需要 12 分钟。

Problem Description
> Galen Marek, codenamed Starkiller, was a male Human apprentice of the Sith Lord Darth Vader. A powerful Force-user who lived during the era of the Galactic Empire, Marek originated from the Wookiee home planet of Kashyyyk as the sole offspring of two Jedi Knights—Mallie and Kento Marek—who deserted the Jedi Order during the Clone Wars. Following the death of his mother, the young Marek's father was killed in battle by Darth Vader. Though only a child, Marek possessed an exceptionally strong connection to the Force that the Dark Lord of the Sith sought to exploit.
>
> When Marek died in 2 BBY, shortly after the formation of the Alliance, Vader endeavored to recreate his disciple by utilizing the cloning technologies of the planet Kamino. The accelerated cloning process—an enhanced version of the Kaminoan method which allowed for a rapid growth rate within its subjects—was initially imperfect and many clones were too unstable to take Marek's place as the Dark Lord's new apprentice. After months of failure, one particular clone impressed Vader enough for him to hope that this version might become the first success. But as with the others, he inherited Marek's power and skills at the cost of receiving his emotions as well, a side effect of memory flashes used in the training process.
>
> — Wookieepedia
Darth Vader is finally able to stably clone the most powerful soilder in the galaxy: the Starkiller. It is the time of the final strike to destroy the Jedi remnants hidden in every corner of the galaxy.
However, as the clone army is growing, giving them names becomes a trouble. A clone of Starkiller will be given a two-word name, a first name and a last name. Both the first name and the last name have exactly 
n  characters, while each character is chosen from an alphabet of size 
m . It appears that there are 
m2n  possible names to be used.
Though the clone process succeeded, the moods of Starkiller clones seem not quite stable. Once an unsatisfactory name is given, a clone will become unstable and will try to fight against his own master. A name is safe if and only if no character appears in both the first name and the last name.
Since no two clones can share a name, Darth Vader would like to know the maximum number of clones he is able to create.
 

Input
The First line of the input contains an integer 
T  (
T10 ), denoting the number of test cases. 
Each test case contains two integers 
n  and 
m  (
1n,m2000 ).
 

Output
For each test case, output one line containing the maximum number of clones Vader can create.
Output the answer 
 mod 109+7
 

Sample Input
23 22 3
 

Sample Output
2 18
 

Source
题意:
有m个字符,由你来取名字,姓和名。一个字符只能出现在姓或者名,或者不出现。姓和名的长度为n。求可以取多少个不重复的名字。
分析:其实就是涂色问题了,dp[i][j]表示长度为i用了j种颜色的方案数。所以:dp[i][j]=(dp[i-1][j]*j+dp[i-1][j-1]*(m-j+1);
代码:
#include
using namespace std;typedef long long LL;const int maxn=2005;const LL mod=1e9+7;LL dp[maxn][maxn];//长度为i用了j种颜色LL poww(int n,int m){
LL ans=1,base=n; while(m>0) {
if(m&1) ans=(ans*base)%mod; base=(base*base)%mod; m>>=1; } return ans%mod;}int main(){
int T; scanf("%d",&T); while(T--) {
int n,m; scanf("%d%d",&n,&m); dp[1][1]=m; for(int i=2;i<=n;i++) {
for(int j=1;j<=min(m,i);j++) {
dp[i][j]=((dp[i-1][j]*j)%mod+(dp[i-1][j-1]*(m-j+1))%mod)%mod; } } LL ans=0; for(int i=1;i<=m-1;i++) {
ans+=(dp[n][i]*poww(m-i,n))%mod;//左右两边方案数相乘即可。 ans%=mod; } printf("%lld\n",ans); } return 0;}

转载地址:https://dh-butterfly.blog.csdn.net/article/details/77429832 如侵犯您的版权,请留言回复原文章的地址,我们会给您删除此文章,给您带来不便请您谅解!

上一篇:数位dp
下一篇:hdu 6134(莫比乌斯反演)

发表评论

最新留言

哈哈,博客排版真的漂亮呢~
[***.90.31.176]2024年05月01日 10时54分07秒

关于作者

    喝酒易醉,品茶养心,人生如梦,品茶悟道,何以解忧?唯有杜康!
-- 愿君每日到此一游!

推荐文章