POJ 2151 Check the difficulty of problems 概率dp+01背包
题目链接:
http://poj.org/problem?id=2151
Check the difficulty of problems
Time Limit: 2000MSMemory Limit: 65536K
#### 问题描述
> Organizing a programming contest is not an easy job. To avoid making the problems too difficult, the organizer usually expect the contest result satisfy the following two terms:
> 1. All of the teams solve at least one problem.
> 2. The champion (One of those teams that solve the most problems) solves at least a certain number of problems.
>
> Now the organizer has studied out the contest problems, and through the result of preliminary contest, the organizer can estimate the probability that a certain team can successfully solve a certain problem.
>
> Given the number of contest problems M, the number of teams T, and the number of problems N that the organizer expect the champion solve at least. We also assume that team i solves problem j with the probability Pij (1
#### 输入
> The input consists of several test cases. The first line of each test case contains three integers M (0 输出
For each test case, please output the answer in a separate line. The result should be rounded to three digits after the decimal point.
样例输入
2 2 2
0.9 0.9
1 0.9
0 0 0
样例输出
0.972
题意
acm竞赛总共有m道题,t个队伍,并且知道第i个队伍做出第j道题的概率,求保证每个队伍都至少做出一道题,并且冠军队伍至少做出n道题的概率。
题解
原问题可以转换为求:所有的队伍都至少做出一题的概率-每个队伍都做出(1~n-1)道题的总概率。
代码
#include<map>
#include<set>
#include<cmath>
#include<queue>
#include<stack>
#include<ctime>
#include<vector>
#include<cstdio>
#include<string>
#include<bitset>
#include<cstdlib>
#include<cstring>
#include<iostream>
#include<algorithm>
#include<functional>
using namespace std;
#define X first
#define Y second
#define mkp make_pair
#define lson (o<<1)
#define rson ((o<<1)|1)
#define mid (l+(r-l)/2)
#define sz() size()
#define pb(v) push_back(v)
#define all(o) (o).begin(),(o).end()
#define clr(a,v) memset(a,v,sizeof(a))
#define bug(a) cout<<#a<<" = "<<a<<endl
#define rep(i,a,b) for(int i=a;i<(b);i++)
#define scf scanf
#define prf printf
typedef __int64 LL;
typedef vector<int> VI;
typedef pair<int,int> PII;
typedef vector<pair<int,int> > VPII;
const int INF=0x3f3f3f3f;
const LL INFL=0x3f3f3f3f3f3f3f3fLL;
const double eps=1e-9;
const double PI = acos(-1.0);
//start----------------------------------------------------------------------
const int maxn=3333;
const int maxm=33;
///n个队伍,m道题,冠军至少做mm道。
int n,m,mm;
double dp[maxn][maxm];
double dp2[maxm][maxm];
double mat[maxn][maxm];
void init(){
clr(dp,0);
}
int main() {
while(scf("%d%d%d",&m,&n,&mm)==3&&n){
init();
for(int i=1;i<=n;i++){
clr(dp2,0);
///01背包,dp2[j][k],求第i个队伍前j道题做出k道的概率。
dp2[0][0]=1.0;
for(int j=1;j<=m;j++){
double x; scf("%lf",&x);
for(int k=0;k<=j;k++){
dp2[j][k]+=dp2[j-1][k]*(1-x);
if(k) dp2[j][k]+=dp2[j-1][k-1]*x;
}
}
///mat[i][k]:第i个队伍m道题做出k道的概率。
for(int k=0;k<=mm-1;k++) mat[i][k]=dp2[m][k];
}
///biger:所有的队伍都至少做出一题的概率
double biger=1.0;
for(int i=1;i<=n;i++) biger*=(1-mat[i][0]);
///dp[i][j]:统计前i个队伍中第i个队伍做了j题的总概率。
clr(dp,0);
for(int j=1;j<=mm-1;j++) dp[1][j]=mat[1][j];
for(int i=2;i<=n;i++){
for(int j=1;j<=mm-1;j++){
for(int k=1;k<=mm-1;k++){
dp[i][j]+=dp[i-1][k]*mat[i][j];
}
}
}
///sum:每个队伍都做出(1~mm-1)道题的总概率
double sum=0;
for(int i=1;i<=mm-1;i++) sum+=dp[n][i];
prf("%.3f\n",biger-sum);
}
return 0;
}
//end-----------------------------------------------------------------------
POJ 2151 Check the difficulty of problems 概率dp+01背包的更多相关文章
- [ACM] POJ 2151 Check the difficulty of problems (概率+DP)
Check the difficulty of problems Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 4748 ...
- POJ 2151 Check the difficulty of problems (概率DP)
题意:ACM比赛中,共M道题,T个队,pij表示第i队解出第j题的概率 ,求每队至少解出一题且冠军队至少解出N道题的概率. 析:概率DP,dp[i][j][k] 表示第 i 个队伍,前 j 个题,解出 ...
- POJ 2151 Check the difficulty of problems (动态规划-可能DP)
Check the difficulty of problems Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 4522 ...
- POJ 2151 Check the difficulty of problems
以前做过的题目了....补集+DP Check the difficulty of problems Time Limit: 2000MS Memory Limit: 65536K ...
- poj 2151 Check the difficulty of problems(概率dp)
poj double 就得交c++,我交G++错了一次 题目:http://poj.org/problem?id=2151 题意:ACM比赛中,共M道题,T个队,pij表示第i队解出第j题的概率 问 ...
- POJ 2151 Check the difficulty of problems:概率dp【至少】
题目链接:http://poj.org/problem?id=2151 题意: 一次ACM比赛,有t支队伍,比赛共m道题. 第i支队伍做出第j道题的概率为p[i][j]. 问你所有队伍都至少做出一道, ...
- POJ 2151 Check the difficulty of problems (概率dp)
题意:给出m.t.n,接着给出t行m列,表示第i个队伍解决第j题的概率. 现在让你求:每个队伍都至少解出1题,且解出题目最多的队伍至少要解出n道题的概率是多少? 思路:求补集. 即所有队伍都解出题目的 ...
- [POJ2151]Check the difficulty of problems (概率dp)
题目链接:http://poj.org/problem?id=2151 题目大意:有M个题目,T支队伍,第i个队伍做出第j个题目的概率为Pij,问每个队伍都至少做出1个题并且至少有一个队伍做出N题的概 ...
- POJ2157 Check the difficulty of problems 概率DP
http://poj.org/problem?id=2151 题意 :t个队伍m道题,i队写对j题的概率为pij.冠军是解题数超过n的解题数最多的队伍之一,求满足有冠军且其他队伍解题数都大于等于1 ...
随机推荐
- Mysql(压缩包)下载与安装
第一步:百度搜索 MySQL 点击官网进入 或者复制链接进入下载页面:https://downloads.mysql.com/archives/community/ 第二步:选择自己需要的 ...
- 使用zabbix发送邮件的简易设置流程(存档用)
1.安装邮件软件 (一般默认安装sendmail,这样apache也不用重新设置.) $sudo yum install sendmail 2.在zabbix上设置发送邮件用的本地邮箱 选择管理-&g ...
- 快速安装Docker
Docker需要操作系统的内核3.0以上,如低于3.0,需先升级内核,才能安装docker: 1.查看内核版本号 [root@daojia ~]# uname -r 3.10.0-693.el7.x8 ...
- 从 OPC 到 OPC UA
[前言]OPC是一个工业标准,所属国际组织是OPC基金会,现有会员已超过220家,包括世界上所有主要的自动化控制系统.仪器仪表及过程控制系统的公司. [经典 OPC]经典OPC规范基于微软Window ...
- Java线程和多线程(十四)——Synchronized关键字解析
曾经有一个比较有趣的面试问题,那就是,关于使用synchronized关键字,是用在方法上面尾号,还是用在一个代码块上面为好? 答案就是使用锁定代码块为更好.因为这样不会锁定对象.当synchroni ...
- 【转载】Free Lunch is Over(免费午餐已经结束了)
原文:Free Lunch is Over(免费午餐已经结束了) 微软C++大师Herb Sutter的文章<The Free Lunch Is Over>翻译,以前自己也经常翻译,但是都 ...
- 6 开发工具IDE-pycharm
http://www.cnblogs.com/sean-yao/p/8321034.html 激活码:http://blog.csdn.net/qq_39248703/article/details/ ...
- 【LG3248】[HNOI2016]树
[LG3248][HNOI2016]树 题面 洛谷 题解 因为每次你加入的点是原树上某一棵子树 那么我们一次加入一个点,代表一棵子树加到大树下面 那么我们要找到一个点在一个大点中用主席树在\(dfs\ ...
- P4284 [SHOI2014]概率充电器
P4284 [SHOI2014]概率充电器 今天上课讲到的题orz,第一次做这种上下搞两次dp的题. g[i]表示i的子树(包括i)不给i充电的概率. f[i]表示i的父亲不给i充电的概率. g[]可 ...
- vmware打开vmx文件不能创建虚拟机的问题
这种情况一般结束 vmware-tray 进程,然后直接在文件管理器里打开vmx文件即可创建(打开方式为vmware), 直接在vmware里打开虚拟机文件可能会出现无反应(不创建虚拟机)的情况.