POJ 2151:Check the difficulty of problems 概率DP

Posted kiuhghcsc

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了POJ 2151:Check the difficulty of problems 概率DP相关的知识,希望对你有一定的参考价值。

Check the difficulty of problems

题目连接:

http://poj.org/problem?id=2151

题意:

有M (0<M≤30)个人,和T (1<T≤1000)道题目,求所有人都至少做出了一道题且其中有人做出N (0<N≤M)道或N道以上的概率

题解:

求出满足条件1(所有人都至少做出一道题目)的概率,再求出满足条件1且所有人的题数都小于N道的概率,减一下就是答案了

              

代码

#include<stdio.h>
#include<string.h>
double a[1001][31],dp[31][31];
int main()
{
	int m,t,n;
	double res1,res2,ans1,ans2;
	while(~scanf("%d%d%d",&m,&t,&n)&&(m||t||n))
	{
		for(int i=1;i<=t;++i)
		for(int j=1;j<=m;++j)
		scanf("%lf",&a[i][j]);
		ans1=ans2=1;
		for(int i=1;i<=t;++i)
		{
			res1=0,res2=0;
			dp[0][0]=1;
			for(int j=1;j<=m;++j)
			{
				dp[j][0]=dp[j-1][0]*(1-a[i][j]);
				for(int k=1;k<=j;++k)
				{
					dp[j][k]=dp[j-1][k-1]*a[i][j];
					if(j>k)dp[j][k]+=dp[j-1][k]*(1-a[i][j]);
					if(j==m)
					{
						res1+=dp[j][k];
						if(k<n)res2+=dp[j][k];
					}
				}
			}
			ans1*=res1;
			ans2*=res2;
		}
		printf("%.3f\n",ans1-ans2);
	}
}

  

以上是关于POJ 2151:Check the difficulty of problems 概率DP的主要内容,如果未能解决你的问题,请参考以下文章

[ACM] POJ 2151 Check the difficulty of problems (概率+DP)

POJ 2151:Check the difficulty of problems 概率DP

POJ 2151 Check the difficulty of problems:概率dp至少

POJ 2151 Check the difficulty of problems(概率DP)

POJ2151Check the difficulty of problems

POJ 2151 Check the difficulty of problems