• hdu 1133 Buy the Ticket


    Buy the Ticket

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
    Total Submission(s): 3246    Accepted Submission(s): 1350

    Problem Description
    The "Harry Potter and the Goblet of Fire" will be on show in the next few days. As a crazy fan of Harry Potter, you will go to the cinema and have the first sight, won’t you?

    Suppose the cinema only has one ticket-office and the price for per-ticket is 50 dollars. The queue for buying the tickets is consisted of m + n persons (m persons each only has the 50-dollar bill and n persons each only has the 100-dollar bill).

    Now the problem for you is to calculate the number of different ways of the queue that the buying process won't be stopped from the first person till the last person.
    Note: initially the ticket-office has no money.

    The buying process will be stopped on the occasion that the ticket-office has no 50-dollar bill but the first person of the queue only has the 100-dollar bill.
     
    Input
    The input file contains several test cases. Each test case is made up of two integer numbers: m and n. It is terminated by m = n = 0. Otherwise, m, n <=100.
     
    Output
    For each test case, first print the test number (counting from 1) in one line, then output the number of different ways in another line.
    Sample Input
    3 0 3 1 3 3 0 0
     
    Sample Output
    Test #1: 6
    Test #2:
    18
    Test #3:
    180
    引用:http://hi.baidu.com/nicker2010/item/1641020ec6c5e01a3b53eeed
     
    这个是卡特兰数问题,只是m!=n,这里引用网上的一些推导:m个人拿50,n个人拿100 
    1:    所以如果 n > m,那么排序方法数为 0  
    2:    现在我们假设 拿50的人用 ‘0’表示, 拿100的人用 1 表示。
          如果有这么一个序列 0101101001001111. 
          当第K个位置出现1的个数多余0的个数时就是一个不合法序列了
          假设m=4 n=3的一个序列是:0110100 显然,它不合法, 现在我们把它稍微变化一下:
          把第二个1(这个1前面的都是合法的)后面的所有位0变成1,1变成0 
          就得到 0111011 这个序列1的数量多于0的数量, 显然不合法, 但现在的关键不是看这个序列是不是合法的 
          关键是:它和我们的不合法序列 0110100 成一一对应的关系 
          也就是说任意一个不合法序列(m个0,n个1), 都可以由另外一个序列(n-1个0和m+1个1)得到 
          另外我们知道,一个序列要么是合法的,要么是不合法的 
          所以,合法序列数量 = 序列总数量 - 不合法序列的总量 
          序列总数可以这样计算m+n 个位置中, 选择 n 个位置出来填上 1, 所以是 C(m+n, n) 
          不合法序列的数量就是: m+n 个位置中, 选择 m+1 个位置出来填上 1 所以是 C(m+n, m+1) 
          然后每个人都是不一样的,所以需要全排列 m! * n! 
         所以最后的公式为 :  ( C(m+n, n) - C(m+n, m+1) ) * m! * n!  化简即 (m+n)! * (m-n+1) / (m+1)
    推广:
          如果原来有p张50元的话,那么不合法的序列的数量应该是:任意一个不合法序列(m个0,n个1)
          都可以由另外一个序列(n-1个0和m+1+p个1)得到,所以是m+n 个位置中, 选择 m+1+p 个位置
          出来填上 1 所以是 C(m+n, m+1+p) 接下来的化简就不推了. 下面的代码就好似按照这个公式求,没有打表(打表的话需要打一个2维的表,表的大小100*100,需要算大于5000个),怕TLE,直接一个一个的算!注意m<n的情况
     1 /*hdu 1133 Buy the Ticket
     2 卡特兰数
     3 (n+m)!*(n-m+1) / n+1*/
     4 
     5 #include <stdio.h>
     6 #include <string.h>
     7 
     8 #define N 400
     9 
    10 int a[N];
    11 
    12 void init(int n,int b,int c)
    13 {
    14     int i;
    15     int j;
    16     int k = N;
    17     int t = 0;
    18     int mul = 0;
    19     a[0] = 1;
    20     for(i = 1; i <= n; i++)
    21     {
    22          t = 0;
    23          mul = 0;
    24         for(j = 0; j < k; j++)
    25           {
    26               mul = a[j] * i + t;
    27               t = mul /10;
    28               a[j] = mul % 10;
    29           }
    30     }
    31 
    32     t = 0;
    33     mul = 0;
    34 for(i = 0; i < k; i++)
    35   {
    36       mul = a[i] * b +t;
    37       a[i] = mul % 10;
    38       t = mul /10;
    39   }
    40 
    41   while(k--)
    42    if(a[k]) break;
    43    int sum = 0;
    44    t = 0;
    45    for(i = k; i >=0; i--)
    46      {
    47          sum = sum *10 + a[i];
    48          a[i] = sum / c;
    49          sum = sum % c;
    50      }
    51 }
    52 int main()
    53 {
    54     int t = 1;
    55     int n,m;
    56     while(scanf("%d%d",&n,&m))
    57     {
    58         if(n == 0 && m == 0)
    59           break;
    60           printf("Test #%d:\n",t++);
    61         if(m > n)
    62           {printf("0\n");
    63           continue;
    64           }
    65         memset(a,0,sizeof(a));
    66         init(n+m,n-m+1,n+1);
    67         int k = N;
    68         int i;
    69         while(k--)
    70          if(a[k]) break;
    71         for(i = k; i >= 0; i--)
    72           printf("%d",a[i]);
    73           printf("\n");
    74     }
    75     return 0;
    76 }
  • 相关阅读:
    从‘void*’到‘int’的转换损失精度
    ../lib//libscsdblog.so: undefined reference to `pthread_atfork'
    使用Crypto++库的CBC模式实现加密
    VIM常用命令
    mysql bin-log三种模式
    windows64位Oracle安装和PL/SQL配置
    Maven项目中突然找不到Build Path或maven dependencies library
    org.springframework.beans.factory.config.MethodInvokingFactoryBean的使用
    使用Spring的StingUtils的commaDelimitedListToStringArray来获取字符串数组
    Spring注入
  • 原文地址:https://www.cnblogs.com/yyroom/p/3035351.html
Copyright © 2020-2023  润新知