Hdoj 4815 little tiger vs. Deep monkey

Source: Internet
Author: User


Recurrence...

Little Tiger vs. Deep monkey Time Limit: 2000/1000 MS (Java/others) memory limit: 65535/65535 K (Java/Others)
Total submission (s): 661 accepted submission (s): 244


Problem descriptiona crowd of little animals is visiting a mysterous 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 (deep learning/deep Neural Network)", says the director. "However, they are only 'a piece of cake '. I won't tell you a top secret that our lab has too Ted a deep monkey (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 shocould 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! Bytes
Inputthe 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] bytes
Outputfor each test case, output only a single line with the answer.
Sample Input
13 0.51 2 3
 
Sample output
3
 
Source2013 Asia Regional Changchun


#include <iostream>#include <cstdio>#include <cstring>#include <algorithm>using namespace std;const double eps=1e-10;double dp[44000],tp[44000],p;int n,fen[50];int main(){    int T_T;    scanf("%d",&T_T);    while(T_T--)    {        scanf("%d%lf",&n,&p);        memset(dp,0,sizeof(dp));        dp[0]=1.;        for(int i=0;i<n;i++)        {            scanf("%d",fen+i);            memset(tp,0,sizeof(tp));            for(int j=0;j<40010;j++)            {               if(dp[j]>eps)                {                    tp[fen[i]+j]+=dp[j]*0.5;                    tp[j]+=dp[j]*0.5;               }            }            memcpy(dp,tp,sizeof(tp));        }        double sum=0;        int ans=-1;        for(int i=0;i<40010;i++)        {            if(dp[i]>eps)            {                sum+=dp[i];                if(sum+eps>=p)                {                    ans=i;                    break;                }            }        }        printf("%d\n",ans);    }    return 0;}



Hdoj 4815 little tiger vs. Deep monkey

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.