• HDU 1004 Let the Balloon Rise


    Let the Balloon Rise

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
    Total Submission(s): 97957    Accepted Submission(s): 37458


    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.
     
    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.
     
    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
    5 green red blue red red 3 pink orange pink 0
     
    Sample Output
    red pink
     
    Author
    WU, Jiazhi
     
    Source
     
    Recommend
    JGShining
     
     
    简单使用map容器。
     
     1 #include <iostream>
     2 #include <string>
     3 #include <map>
     4 using namespace std;
     5 
     6 map<string,int> m;
     7 int main()
     8 {
     9     int n;
    10     string s,maxs;
    11     while(cin>>n&&n)
    12     {
    13         for(int i=0;i<n;i++)
    14         {
    15             cin>>s;
    16             if(!m.count(s))
    17                 m[s]=1;
    18             else
    19                 m[s]++;
    20         }
    21 
    22         int cmp=0;
    23         map<string,int>::iterator it;
    24         for(it=m.begin();it!=m.end();it++)
    25         {
    26             if(it->second > cmp)
    27             {
    28                 cmp=it->second;
    29                 maxs=it->first;
    30             }
    31         }
    32         m.clear();
    33         cout<<maxs<<endl;
    34     }
    35 }
  • 相关阅读:
    head命令
    less命令
    解决get方法传递URL参数中文乱码问题
    The method convert(String) of type DateConverter must override a superclass method
    Tomcat Can't load AMD 64-bit .dll on a IA 32
    聚合函数查询 group by having
    string[] 清理重复+反转显示
    C# GetValueList 获得字符串中开始和结束字符串中间得值列表
    C# GetValue 正则获取开始结束代码
    string [] 去除重复字符两个方法
  • 原文地址:https://www.cnblogs.com/cumulonimbus/p/5158757.html
Copyright © 2020-2023  润新知