zoukankan      html  css  js  c++  java
  • HDU4815

    Little Tiger vs. Deep Monkey

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65535/65535 K (Java/Others)
    Total Submission(s): 1587    Accepted Submission(s): 566


    Problem Description
    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
     
    Recommend
    liuyiding
     
    说白了就是个01背包,但是我场上竟然没推出来,大受打击,又把01背包整理了一遍,幸好队友给力。
    #include <cstdio>
    #include <iostream>
    #include <sstream>
    #include <cmath>
    #include <cstring>
    #include <cstdlib>
    #include <string>
    #include <vector>
    #include <map>
    #include <set>
    #include <queue>
    #include <stack>
    #include <algorithm>
    using namespace std;
    #define ll long long
    #define _cle(m, a) memset(m, a, sizeof(m))
    #define repu(i, a, b) for(int i = a; i < b; i++)
    #define repd(i, a, b) for(int i = b; i >= a; i--)
    #define sfi(n) scanf("%d", &n)
    #define pfi(n) printf("%d
    ", n)
    #define pfl(n) printf("%I64d
    ", n)
    #define MAXN 600000
    
    ll d[MAXN];
    ll sum;
    int s[45];
    int n;
    double p;
    double mm[45];
    void get_m()
    {
        mm[0] = 1.0;
        repu(i, 1, 45) mm[i] = 2.0 * mm[i - 1];
        return ;
    }
    
    void dp()
    {
        memset(d, 0, sizeof(d));
        d[0] = 1;
        for(int i = 1; i <= n; i++)
            for(int j = sum; j >= s[i]; j--)
                   d[j] = d[j]+d[j-s[i]];
        return ;
    }
    
    int main()
    {
        int T;
        sfi(T);
        get_m();
        while(T--)
        {
           sfi(n);
           scanf("%lf", &p);
           sum = 0;
           repu(i, 1, n + 1) { sfi(s[i]); sum += s[i];}
           dp();
    
           double num = 0.0;
           double monkey = (p * mm[n]);
           for(ll i = 0; i <= sum; i++)
           {
               num += d[i];
               if(num >= monkey)
               {
                   printf("%I64d
    ", i);
                   break;
               }
           }
        }
        return 0;
    }
    View Code
     
  • 相关阅读:
    [置顶] kubernetes资源类型--DaemonSet
    Docker容器的自动化监控实现
    [置顶] docker--基础镜像和dockerfile
    Target runtime Apache Tomcat v8.0 is not defined
    jeecg-org.jeecgframework.web.system.listener.InitListener
    tomcat:利用tomcat部署war包格式的项目
    更换jdk版本:jdk1.8更换为jdk1.7之后输入java -version还是出现1.8的版本号
    Maven项目下WEB-INFO目录下没有编译的classes文件
    解决maven web项目Cannot detect Web Project version. Please specify version of Web Project through...的错误
    如何提高maven的下载速度:享受一下mvn时飞的感觉
  • 原文地址:https://www.cnblogs.com/sunus/p/4741282.html
Copyright © 2011-2022 走看看