HDOJ 5038 Grade, hdoj5038grade

Source: Internet
Author: User

HDOJ 5038 Grade, hdoj5038grade



Grade Time Limit: 3000/1500 MS (Java/Others) Memory Limit: 262144/262144 K (Java/Others)
Total Submission (s): 194 Accepted Submission (s): 105


Problem DescriptionTed is a employee of Always Cook Mushroom (ACM ). his boss Matt gives him a pack of mushrooms and ask him to grade each mushroom according to its weight. suppose the weight of a mushroom is w, then it's grade s is

S = 10000-(100-w) ^ 2
What's more, Ted also has to report the mode of the grade of these mushrooms. the mode is the value that appears most often. mode may not be unique. if not all the value are the same but the frequencies of them are the same, there is no mode.
InputThe first line of the input contains an integer T, denoting the number of testcases. Then T test cases follow.

The first line of each test cases contains one integers N (1 <= N <= 10 ^ 6), denoting the number of the mushroom.

The second line contains N integers, denoting the weight of each mushroom. The weight is greater than 0, and less than 200.
OutputFor each test case, output 2 lines.

The first line contains "Case # x:", where x is the case number (starting from 1)

The second line contains the mode of the grade of the given mushrooms. If there exists multiple modes, output them in ascending order. If there exists no mode, output "Bad Mushroom ".
Sample Input
36100 100 100 99 98 1016100 100 100 99 99 1016100 100 98 99 99 97
 
Sample Output
Case #1:10000Case #2:Bad MushroomCase #3:9999 10000
 
Source2014 ACM/ICPC Asia Regional Beijing Online

#include <iostream>#include <cstdio>#include <cstring>#include <algorithm>#include <map>#include <vector>#include <set>using namespace std;int getS(int x){    return 10000-(100-x)*(100-x);}int main(){    int T_T,cas=1;    scanf("%d",&T_T);    while(T_T--)    {        map<int,int> mp;        int n,mx=-1;        scanf("%d",&n);        for(int i=0;i<n;i++)        {            int x;            scanf("%d",&x);            x=getS(x);            mp[x]++;            mx=max(mp[x],mx);        }        map<int,int>::iterator it;        vector<int> ans;        set<int> st;        bool flag=true;        for(it=mp.begin();it!=mp.end();it++)        {            if(it->second==mx)            {                ans.push_back(it->first);                st.insert(it->first);            }            else            {                flag=false;            }        }        printf("Case #%d:\n",cas++);        if(flag)        {            if(st.size()==1) flag=false;            else puts("Bad Mushroom");        }        if(flag==false)        {            sort(ans.begin(),ans.end());            for(int i=0,sz=ans.size();i<sz;i++)            {                if(i) putchar(32);                printf("%d",ans[i]);            }            putchar(10);        }    }    return 0;}






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.