码迷,mamicode.com
首页 > 其他好文 > 详细

hdu 5038 Grade 水

时间:2014-09-21 21:58:51      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   os   ar   for   div   sp   

用map,也可以用数组,少了个特判WA了一发。

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <cmath>
#include <vector>
#include <map>
using namespace std;
const int maxn=1000005;
int n;
int a[maxn];
int cas=1;
map<int,int>id;
vector<int>ans;
int main()
{
//    freopen("in","r",stdin);
    int t;
    cin>>t;
    while(t--){
        printf("Case #%d:\n",cas++);
        id.clear();
        scanf("%d",&n);
        int x;
        int up=0;
        for(int i=0;i<n;i++){
            scanf("%d",&x);
            int y=10000-(100-x)*(100-x);
            ++id[y];
            up=max(up,id[y]);
        }
        ans.clear();
        for(map<int,int> ::iterator it=id.begin();it!=id.end();it++){
            if(it->second==up)ans.push_back(it->first);
        }
        if(up*ans.size()==n&&ans.size()>1)puts("Bad Mushroom");
        else {
            sort(ans.begin(),ans.end());
            for(int i=0;i<ans.size();i++)printf("%d%c",ans[i],i==ans.size()-1?\n: );
        }
    }
    return 0;
}

 

hdu 5038 Grade 水

标签:style   blog   color   io   os   ar   for   div   sp   

原文地址:http://www.cnblogs.com/wshh/p/3984873.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!