首页 > 代码库 > hdu 1004
hdu 1004
Let the Balloon Rise
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 107810 Accepted Submission(s): 41848
Problem Description
Contest time again! How excited it is to see balloons floating around. But to tell you a secret, the judges‘ favorite time is guessing the most popular problem. When the contest is over, they will count the balloons of each color and find the result.
This year, they decide to leave this lovely job to you.
This year, they decide to leave this lovely job to you.
Input
Input contains multiple test cases. Each test case starts with a number N (0 < N <= 1000) -- the total number of balloons distributed. The next N lines contain one color each. The color of a balloon is a string of up to 15 lower-case letters.
A test case with N = 0 terminates the input and this test case is not to be processed.
A test case with N = 0 terminates the input and this test case is not to be processed.
Output
For each case, print the color of balloon for the most popular problem on a single line. It is guaranteed that there is a unique solution for each test case.
Sample Input
5greenredblueredred3pinkorangepink0
Sample Output
redpink
题意 非常简单 就是找出出现最多次数的颜色
明显map很好水,可是我wa了,因为map没清空,无奈
1 #include<iostream> 2 #include<cstring> 3 #include<map> 4 #include<string.h> 5 #include<cstdio> 6 #include<cmath> 7 #include<algorithm> 8 typedef long long ll; 9 using namespace std;10 int main()11 {12 map<string,int>str;13 int n;14 string a;15 while(scanf("%d",&n)!=EOF)16 {17 if(n==0)18 break;19 int sum=0;20 str.clear();21 for(int i=0;i<n;i++)22 {23 cin>>a;24 str[a]++;25 sum=max(sum,str[a]);26 }27 map<string,int>::iterator it;28 for(it=str.begin();it!=str.end();it++)29 {30 if(sum==it->second)31 {32 cout<<it->first<<endl;33 }34 }35 }36 }
hdu 1004
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。