uva 12034 Race
Posted gccbuaa
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了uva 12034 Race相关的知识,希望对你有一定的参考价值。
#include <stdio.h>
#include <string.h>
#include <iostream>
#include <algorithm>
#include <vector>
#include <queue>
#include <stack>
#include <set>
#include <map>
#include <string>
#include <math.h>
#include <stdlib.h>
#include <time.h>
using namespace std;
const int M=10056;
const int N=1024;
int c[N][N];
int main()
{
int f[N],cas,t,i,j,n;
for(i=0;i<N;i++)
{
c[i][0]=c[i][i]=1;
for(j=1;j<i;j++)
{
c[i][j]=(c[i-1][j-1]+c[i-1][j])%M;
}
}
f[0]=1;
for(i=1;i<N;i++)
{
f[i]=0;
for(j=1;j<=i;j++)
{
f[i]=(f[i]+c[i][j]*f[i-j])%M;
}
}
scanf("%d",&t);
for(cas=1;cas<=t;cas++)
{
scanf("%d",&n);
printf("Case %d: %d\n",cas,f[n]);
}
return 0;
}
以上是关于uva 12034 Race的主要内容,如果未能解决你的问题,请参考以下文章