Robberies

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 21310    Accepted Submission(s): 7885

Problem Description
The
aspiring Roy the Robber has seen a lot of American movies, and knows
that the bad guys usually gets caught in the end, often because they
become too greedy. He has decided to work in the lucrative business of
bank robbery only for a short while, before retiring to a comfortable
job at a university.


For
a few months now, Roy has been assessing the security of various banks
and the amount of cash they hold. He wants to make a calculated risk,
and grab as much money as possible.

His mother, Ola, has
decided upon a tolerable probability of getting caught. She feels that
he is safe enough if the banks he robs together give a probability less
than this.

 
Input
The
first line of input gives T, the number of cases. For each scenario,
the first line of input gives a floating point number P, the probability
Roy needs to be below, and an integer N, the number of banks he has
plans for. Then follow N lines, where line j gives an integer Mj and a
floating point number Pj .
Bank j contains Mj millions, and the probability of getting caught from robbing it is Pj .
 
Output
For
each test case, output a line with the maximum number of millions he
can expect to get while the probability of getting caught is less than
the limit set.

Notes and Constraints
0 < T <= 100
0.0 <= P <= 1.0
0 < N <= 100
0 < Mj <= 100
0.0 <= Pj <= 1.0
A bank goes bankrupt if it is robbed, and you may assume that all
probabilities are independent as the police have very low funds.

 
Sample Input
3
0.04 3
1 0.02
2 0.03
3 0.05
0.06 3
2 0.03
2 0.03
3 0.05
0.10 3
1 0.03
2 0.02
3 0.05
 
Sample Output
2
4
6
 
Source
 题意:
一人去抢银行,n个银行,在每个银行能够得到的钱mj,被抓住的概率pj,抢所有银行被抓住的概率p,问在总概率不超过p时得到的最大钱数。
代码:
 //由于存在概率的乘法,用普通的01背包肯定不行,可以以总钱数作为背包的容量,求不被抓到的最大概率,最后for语句,钱数递减找到第一个符合的概率即可。
//注意初始化背包时f[0]=1,其他的是0;被抓的概率是1减去不被抓的概率。
#include<iostream>
#include<cstdio>
using namespace std;
int t,n;
double p,pj[];
int mj[];
double f[];
int main()
{
scanf("%d",&t);
while(t--)
{
int sum=;
for(int i=;i<=;i++)
f[i]=;
f[]=;
scanf("%lf%d",&p,&n);
for(int i=;i<=n;i++)
{
scanf("%d%lf",&mj[i],&pj[i]);
sum+=mj[i];
pj[i]=-pj[i];
}
for(int i=;i<=n;i++)
{
for(int k=sum;k>=mj[i];k--)
{
f[k]=max(f[k],f[k-mj[i]]*pj[i]);
}
}
for(int i=sum;i>=;i--)
{
if(-f[i]<=p)
{
printf("%d\n",i);
break;
}
}
}
return ;
}

最新文章

  1. 谈谈一些有趣的CSS题目(七)-- 消失的边界线问题
  2. [备忘]检索 COM 类工厂中 CLSID 为 {91493441-5A91-11CF-8700-00AA0060263B} 的组件时失败解决方法
  3. Linq的一些很方便的方法
  4. C#邮件发送问题(一)
  5. Fragment碎片的创建和动态更新
  6. 定时调度模块:sched
  7. web.xml 详细介绍(转)
  8. Windows Server 2008标准证书使用记录
  9. 【转】java编译错误 程序包javax.servlet不存在javax.servlet.*
  10. Android自定义样式
  11. javascript Error对象详解
  12. hash在Coreseek 中配置bigint
  13. proxy.go 源码阅读
  14. Keras 获取中间某一层输出
  15. Java 实现文件压缩工具类
  16. 如何获取Azure AD tenant的tenant Id?
  17. P1428 小鱼比可爱
  18. Java基础——Oracle(六)
  19. Oracle EBS OM 取消订单
  20. Linux 下的两种分层存储方案

热门文章

  1. HDU 1540 Tunnel Warfare 平衡树 / 线段树:单点更新,区间合并
  2. update comboBox
  3. hdu 3001(状压dp, 3进制)
  4. ThinkPHP3.2 volist嵌套循环显示原理
  5. 某app客户端数字签名分析
  6. PHP入门 - - 07--&gt;HTML的表单
  7. Angular JS 学习之 Scope作用域
  8. Swift3.0语言教程使用URL字符串
  9. iOS10 UI设计基础教程
  10. Delphi7 客户端调用WebService(天气预报)