设为首页 加入收藏

TOP

HDOJ 5038 Grade
2015-07-20 17:38:00 来源: 作者: 【 】 浏览:3
Tags:HDOJ 5038 Grade



Grade

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


Problem Description Ted 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.
Input The 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.
Output For 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
3
6
100 100 100 99 98 101
6
100 100 100 99 99 101
6
100 100 98 99 99 97

Sample Output
Case #1:
10000
Case #2:
Bad Mushroom
Case #3:
9999 10000

Source 2014 ACM/ICPC Asia Regional Beijing Online

#include 
  
   
#include 
   
     #include 
    
      #include 
     
       #include 
       #include 
       
         #include 
        
          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
         
           mp; int n,mx=-1; scanf("%d",&n); for(int i=0;i
          
           ::iterator it; vector
           
             ans; set
            
              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
             
              


】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
分享到: 
上一篇Leetcode dp Interleaving String 下一篇HDU 5033 Building (单调栈)

评论

帐  号: 密码: (新用户注册)
验 证 码:
表  情:
内  容:

·利用python进行数据 (2025-12-25 20:49:22)
·如何使用 python 中 (2025-12-25 20:49:19)
·零基础如何学爬虫技 (2025-12-25 20:49:17)
·Java 并发工具类:提 (2025-12-25 20:25:44)
·Java面试技巧:如何 (2025-12-25 20:25:41)