hdu4336Card Collector

题意:有n种卡片,可以通过买干脆面收集卡片,每包干脆面最多一张卡片,问收集完n种卡片时买的干脆面包数的期望。

做法:

把当前手中有的卡片种类状压成s,

然后dp[s],状态为s时的期望。

考虑每次买一包干脆面,有三种情况:

1、已经拥有

2、没有拥有

3、没有卡片

于是dp[s]=dp[s]*(1跟3的概率之和)+dp[s|(1<<i)]*p[i],i为还没有的卡片编号,p[i]为摸到它的概率

#include<map>
#include<string>
#include<cstring>
#include<cstdio>
#include<cstdlib>
#include<cmath>
#include<queue>
#include<vector>
#include<iostream>
#include<algorithm>
#include<bitset>
#include<climits>
#include<list>
#include<iomanip>
#include<stack>
#include<set>
using namespace std;
double dp[1<<20],p[20];
int main()
{
	int n;
	while(cin>>n)
	{
		double sum=1;
		for(int i=0;i<n;i++)
		{
			cin>>p[i];
			sum-=p[i];
		}
		dp[(1<<n)-1]=0;
		for(int i=(1<<n)-2;i>-1;i--)
		{
			double s1=0,s2=0;
			for(int j=0;j<n;j++)
				if((i>>j)&1)
					s1+=p[j];
				else
					s2+=dp[i|(1<<j)]*p[j];
			dp[i]=(1+s2)/(1-(s1+sum));
		}
		printf("%.4f\n",dp[0]);
	}
}

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)

Total Submission(s): 3402    Accepted Submission(s): 1662

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

2012 Multi-University Training Contest 4

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

时间: 2024-10-07 18:39:03

hdu4336Card Collector的相关文章

HDU4336-Card Collector(概率DP求期望)

Card Collector Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 2195    Accepted Submission(s): 1034 Special Judge Problem Description In your childhood, do you crazy for collecting the beautifu

hdu4336-----Card Collector

Card Collector Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 2785    Accepted Submission(s): 1321 Special Judge Problem Description In your childhood, do you crazy for collecting the beautifu

hdu4336Card Collector 概率dp+状态压缩

//给n个卡片每次出现的概率,求所有卡片都出现的需要抽的次数的期望 //dp[i]表示在状态的情况下到所有的卡片都出现的期望 //dp[i] = 1 + p1*dp[i] + ${p2[j]*dp[i]} + ${p3[k]*dp[i^(1<<k)]} //$表示求和,p1表示没有出现卡片的概率 , p2[j]表示出现的卡片是当前状态已经出现的状态 //p3表示出现的卡片当前状态没有 //整理的dp[i] = (1 +  ${p3[k]*dp[i^(1<<k)])/${p3[k]}

Bone Collector

Problem Description Many years ago , in Teddy’s hometown there was a man who was called “Bone Collector”. This man like to collect varies of bones , such as dog’s , cow’s , also he went to the grave …The bone collector had a big bag with a volume of

hduoj 2602Bone Collector

Bone Collector Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 40598    Accepted Submission(s): 16872 Problem Description Many years ago , in Teddy’s hometown there was a man who was called “Bon

Bone Collector(杭电2602)(01背包)

Bone Collector Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 31604    Accepted Submission(s): 13005 Problem Description Many years ago , in Teddy's hometown there was a man who was called "Bo

Java_garbage collector

摘自:http://blog.csdn.net/java2000_wl/article/details/8030172 HotSpot JVM垃圾收集器 上面有7中收集器,分为两块,上面为新生代收集器,下面是老年代收集器.如果两个收集器之间存在连线,就说明它们可以搭配使用. Serial(串行GC)收集器_Serial GC Serial收集器是一个新生代收集器,单线程执行,使用复制算法.它在进行垃圾收集时,必须暂停其他所有的工作线程(用户线程).是Jvm client模式下默认的新生代收集器.

hdu 4336 Card Collector

Card Collector http://acm.hdu.edu.cn/showproblem.php?pid=4336 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Special Judge Problem Description In your childhood, do you crazy for collecting the beautiful cards in

HDU2639Bone Collector II[01背包第k优值]

Bone Collector II Time Limit: 5000/2000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 4229    Accepted Submission(s): 2205 Problem Description The title of this problem is familiar,isn't it?yeah,if you had took par