• HDU-4336-期望dp-bit


    Card Collector

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
    Total Submission(s): 5272    Accepted Submission(s): 2688
    Special Judge


    Problem Description
    In your childhood, do you crazy for collecting the beautiful cards in the snacks? They said that, for example, if you collect all the 108 people in the famous novel Water Margin, you will win an amazing award. 

    As a smart boy, you notice that to win the award, you must buy much more snacks than it seems to be. To convince your friends not to waste money any more, you should find the expected number of snacks one should buy to collect a full suit of cards.
     
    Input
    The first line of each test case contains one integer N (1 <= N <= 20), indicating the number of different cards you need the collect. The second line contains N numbers p1, p2, ..., pN, (p1 + p2 + ... + pN <= 1), indicating the possibility of each card to appear in a bag of snacks. 

    Note there is at most one card in a bag of snacks. And it is possible that there is nothing in the bag.
     
    Output
    Output one number for each test case, indicating the expected number of bags to buy to collect all the N different cards.

    You will get accepted if the difference between your answer and the standard answer is no more that 10^-4.
     
    Sample Input
    1 0.1 2 0.1 0.4
     
    Sample Output
    10.000 10.500
     
    Source
     
        容斥暂时搞不懂,f[S]表示当前收集状态为S距离目标的期望购买次数,S能推出的状态有n+1种,把推完之后状态还是S的移到方程左边,其他的在右边最后算一下答案就好了。(显然推完之后还是S的情况只可能是下一次买的卡是空的或者S中已经有了)。
        
     1 #include<iostream>
     2 #include<cstring>
     3 #include<queue>
     4 #include<cstdio>
     5 #include<stack>
     6 #include<set>
     7 #include<map>
     8 #include<cmath>
     9 #include<ctime>
    10 #include<time.h> 
    11 #include<algorithm>
    12 using namespace std;
    13 #define mp make_pair
    14 #define pb push_back
    15 #define debug puts("debug")
    16 #define LL long long 
    17 #define pii pair<int,int>
    18 #define eps 1e-10
    19 #define inf 0x3f3f3f3f
    20 
    21 double f[(1<<21)+30];
    22 double p[25];
    23 int main()
    24 {
    25     int t,i,j,k,n,m,u,v;
    26     while(scanf("%d",&n)==1){double none=0;
    27         for(i=0;i<n;++i) scanf("%lf",p+i),none+=p[i];
    28         int all=(1<<n)-1;
    29         memset(f,0,sizeof(f));
    30         for(i=all-1;i>=0;--i){
    31             double Pj=(double)1.00-none,s=0;
    32             for(j=0;j<n;++j){
    33                 if(i&(1<<j)){
    34                     Pj+=p[j];
    35                 }
    36                 else{
    37                     s+=p[j]*f[i|(1<<j)];
    38                 }
    39             }
    40             s+=1.00;
    41             Pj=1.00-Pj;
    42             f[i]=s/Pj;
    43         }
    44         printf("%.5f
    ",f[0]);
    45     }
    46     return 0; 
    47 }

       

          容斥做法的话不是很懂说一下简单思路。

        E(至少得到i号卡)=1/pi,把他记作E(i),这个的含义就是一直买卡直至第一次出现i卡时停止的期望购买次数,这个式子是可以推出来的,数学不好真tm烦= =E(至少得到A卡或者B卡的)=E(A|B).

        我们要求的就是E(至少得到1&2&...&N号卡),不妨记作E(1&2&...&N)=E(1)+E(2)+...+E(n)-{E(1|2)+E(2|3)+......}+{E(1|2|3)+...}.....

    就这样一直利用容斥定理奇加偶减算出最终的答案。

        以后会了可能会补。

  • 相关阅读:
    docker出现如下错误:Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?
    docker 常用的命令
    postman的使用大全
    plsql连接数据库出现乱码
    mybatis从mapper接口跳转到相应的xml文件的eclipse插件
    PWC6345: There is an error in invoking javac. A full JDK (not just JRE) is required
    解决java compiler level does not match the version of the installed java project facet【转载】
    使用maven时出现Failure to transfer 错误的解决方法
    QT5 网络通讯
    c/c++ 贪吃蛇控制台版
  • 原文地址:https://www.cnblogs.com/zzqc/p/9025776.html
Copyright © 2020-2023  润新知