zoukankan      html  css  js  c++  java
  • HDU2068 RPG的错排 —— 错排

    题目链接:https://vjudge.net/problem/HDU-2068

    RPG的错排

    Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
    Total Submission(s): 14355    Accepted Submission(s): 5828


    Problem Description
    今年暑假杭电ACM集训队第一次组成女生队,其中有一队叫RPG,但做为集训队成员之一的野骆驼竟然不知道RPG三个人具体是谁谁。RPG给他机会让他猜猜,第一次猜:R是公主,P是草儿,G是月野兔;第二次猜:R是草儿,P是月野兔,G是公主;第三次猜:R是草儿,P是公主,G是月野兔;......可怜的野骆驼第六次终于把RPG分清楚了。由于RPG的带动,做ACM的女生越来越多,我们的野骆驼想都知道她们,可现在有N多人,他要猜的次数可就多了,为了不为难野骆驼,女生们只要求他答对一半或以上就算过关,请问有多少组答案能使他顺利过关。
     
    Input
    输入的数据里有多个case,每个case包括一个n,代表有几个女生,(n<=25), n = 0输入结束。
     
    Sample Input
    1 2 0
     
    Sample Output
    1 1
     
    Author
    Rabbit
     
    Source
     
    Recommend
    lcy

    题解:

    一半以上答对,即一半以下答错。0~n/2的错排之和。

    代码如下:

     1 #include <iostream>
     2 #include <cstdio>
     3 #include <cstring>
     4 #include <algorithm>
     5 #include <vector>
     6 #include <cmath>
     7 #include <queue>
     8 #include <stack>
     9 #include <map>
    10 #include <string>
    11 #include <set>
    12 using namespace std;
    13 typedef long long LL;
    14 const int INF = 2e9;
    15 const LL LNF = 9e18;
    16 const int MOD = 1e9+7;
    17 const int MAXN = 25+10;
    18 
    19 LL C[MAXN][MAXN], D[MAXN];
    20 
    21 void init()
    22 {
    23     memset(C, 0, sizeof(C));
    24     for(int i = 0; i<MAXN; i++)
    25     {
    26         C[i][0] = 1;
    27         for(int j = 1; j<=i; j++)
    28             C[i][j] = C[i-1][j-1] + C[i-1][j];
    29     }
    30 
    31     D[0] = 1; D[1] = 0;
    32     for(int i = 2; i<MAXN; i++)
    33         D[i] = 1LL*(i-1)*(D[i-1]+D[i-2]);
    34 }
    35 
    36 int main()
    37 {
    38     init();
    39     int n;
    40     while(scanf("%d", &n)&&n)
    41     {
    42         LL ans = 0;
    43         for(int i = 0; i<=n/2; i++)
    44             ans += 1LL*C[n][n-i]*D[i];
    45         printf("%lld
    ", ans);
    46     }
    47 }
    View Code
  • 相关阅读:
    system函数
    如何:配置 ClickOnce 信任提示行为
    linux中shell变量$#,$@,$0,$1,$2的含义解释 (转载)
    C/C++中如何在main()函数之前执行一条语句?
    循环小数表示法
    struct/class等内存字节对齐问题详解
    malloc(0)
    C语言实现程序跳转到绝对地址0x100000处执行
    嵌入式程序设计中C/C++代码的优化
    backtrace和backtrace_symbols
  • 原文地址:https://www.cnblogs.com/DOLFAMINGO/p/8324433.html
Copyright © 2011-2022 走看看