hdu2955 Robberies(01背包)


Robberies

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


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
 
題意:Roy想要搶劫銀行,每家銀行多有一定的金額和被抓到的概率,知道Roy被抓的最大概率P,求Roy在被抓的情況下,搶劫最多。
分析:被抓概率可以轉換成安全概率,Roy的安全概率大於1-P時都是安全的。搶劫的金額為0時,肯定是安全的,所以d[0]=1;其他金額初始為最危險的所以概率全為0;
注意:不要誤以為精度只有兩位。
 
View Code
 1 #include<iostream>
 2 #include<cstdio>
 3 #include<cmath>
 4 #define MAXN 101
 5 #define MAXV 10001
 6 
 7 using namespace std;
 8 
 9 int cost[MAXN];
10 double weight[MAXV],d[MAXV];
11 
12 int main()
13 {
14     int test,sumv,n,i,j;
15     double P;
16     cin>>test;
17     while(test--)
18     {
19         scanf("%lf %d",&P,&n);
20         P=1-P;
21         sumv=0;
22         for(i=0;i<n;i++)
23         {
24             scanf("%d %lf",&cost[i],&weight[i]);
25             weight[i]=1-weight[i];
26             sumv+=cost[i];
27         }
28         for(i=0;i<=sumv;i++)
29             d[i]=0;
30         d[0]=1;
31         for(i=0;i<n;i++)
32         {
33             for(j=sumv;j>=cost[i];j--)
34             {
35                 d[j]=max(d[j],d[j-cost[i]]*weight[i]);
36             }
37         }
38         bool flag=false;
39         for(i=sumv;i>=0;i--)
40         {
41             if(d[i]-P>0.000000001)
42             {
43                 printf("%d\n",i);
44                 break;
45             }
46         }
47     }
48     return 0;
49 }

 

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM