HDU 4815 Little Tiger vs. Deep Monkey

Little Tiger vs. Deep Monkey

Time Limit: 1000ms
Memory Limit: 65535KB
This problem will be judged on HDU. Original ID: 4815
64-bit integer IO format: %I64d      Java class name: Main
 
A crowd of little animals is visiting a mysterious laboratory – The Deep Lab of SYSU.

“Are you surprised by the STS (speech to speech) technology of Microsoft Research and the cat face recognition project of Google and academia? Are you curious about what technology is behind those fantastic demos?” asks the director of the Deep Lab. “Deep learning, deep learning!” Little Tiger raises his hand briskly. “Yes, clever boy, that’s deep learning (深度学习/深度神经网络)”, says the director. “However, they are only ‘a piece of cake’. I won’t tell you a top secret that our lab has invented a Deep Monkey (深猴) with more advanced technology. And that guy is as smart as human!”

“Nani ?!” Little Tiger doubts about that as he is the smartest kid in his kindergarten; even so, he is not as smart as human, “how can a monkey be smarter than me? I will challenge him.”

To verify their research achievement, the researchers of the Deep Lab are going to host an intelligence test for Little Tiger and Deep Monkey.

The test is composed of N binary choice questions. And different questions may have different scores according to their difficulties. One can get the corresponding score for a question if he chooses the correct answer; otherwise, he gets nothing. The overall score is counted as the sum of scores one gets from each question. The one with a larger overall score wins; tie happens when they get the same score.

Little Tiger assumes that Deep Monkey will choose the answer randomly as he doesn’t believe the monkey is smart. Now, Little Tiger is wondering “what score should I get at least so that I will not lose in the contest with probability of at least P? ”. As little tiger is a really smart guy, he can evaluate the answer quickly.

You, Deep Monkey, can you work it out? Show your power!
 

Input

The first line of input contains a single integer T (1 ≤ T ≤ 10) indicating the number of test cases. Then T test cases follow.

Each test case is composed of two lines. The first line has two numbers N and P separated by a blank. N is an integer, satisfying 1 ≤ N ≤ 40. P is a floating number with at most 3 digits after the decimal point, and is in the range of [0, 1]. The second line has N numbers separated by blanks, which are the scores of each question. The score of each questions is an integer and in the range of [1, 1000]
 

Output

For each test case, output only a single line with the answer.
 

Sample Input

1
3 0.5
1 2 3

Sample Output

3

Source

 
解题:01背包?不懂,网上看题解,还是有点迷糊。
 
 1 #include <iostream>
 2 #include <cstdio>
 3 #include <cstring>
 4 #include <cmath>
 5 #include <algorithm>
 6 #include <climits>
 7 #include <vector>
 8 #include <queue>
 9 #include <cstdlib>
10 #include <string>
11 #include <set>
12 #include <stack>
13 #define LL long long
14 #define pii pair<int,int>
15 #define INF 0x3f3f3f3f
16 using namespace std;
17 
18 int main() {
19     int t,n,sum,i,j,d[45],dp[45];
20     double p;
21     LL need,all;
22     scanf("%d",&t);
23     while(t--){
24         scanf("%d %lf",&n,&p);
25         for(i = sum = 0; i < n; i++){
26             scanf("%d",d+i);
27             sum += d[i];
28         }
29         memset(dp,0,sizeof(dp));
30         dp[0] = 1;
31         all = 1LL<<n;
32         for(i = 0; i < n; i++){
33             for(j = sum; j >= d[i]; j--)
34                 if(dp[j-d[i]]) dp[j] += dp[j-d[i]];
35         }
36         need = ceil(all*p);
37         for(i = all = 0; i <= sum; i++){
38             all += dp[i];
39             if(all >= need){
40                 printf("%I64d\n",i);
41                 break;
42             }
43         }
44     }
45     return 0;
46 }
View Code

 

posted @ 2014-08-27 09:40  狂徒归来  阅读(317)  评论(0编辑  收藏  举报