Robberies

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

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 Constraints0 < T <= 1000.0 <= P <= 1.00 < N <= 1000 < Mj <= 1000.0 <= Pj <= 1.0A 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;

注意:不要误以为精度只有两位。

?:为什么要求安全概率呢?

1 #include

2 #include

3 #include

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

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

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 }

 

精彩文章

评论可见,请评论后查看内容,谢谢!!!评论后请刷新页面。