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\n",f[0]);
45     }
46     return 0; 
47 }

猜你喜欢

转载自www.cnblogs.com/zzqc/p/9025776.html