zoukankan      html  css  js  c++  java
  • 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
    ",cas,f[n]);
        }
        return 0;
    }

    版权声明:本文为博主原创文章,未经博主允许不得转载。http://xiang578.top/

  • 相关阅读:
    vb笔记
    linux学习笔记
    linnux--shell
    # 用类来封装动态数组:分文件编写
    面向对象
    c++2
    c++1
    答疑:指针数组字符串
    文件操作
    用函数封装实现对一个数组增删改查
  • 原文地址:https://www.cnblogs.com/xryz/p/4847970.html
Copyright © 2011-2022 走看看