• 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 }
  • 相关阅读:
    Java String字符串深入详解
    每日linux命令学习-sed
    每日linux命令学习-历史指令查询(history、fc、alias)
    每日linux命令学习-rpm命令
    每日linux命令学习-head命令和tail命令
    每日linux命令学习-lsattr和chattr
    每日linux命令学习-xargs命令
    每日linux命令学习-read命令
    测试mysql性能工具
    mysql 免安装版文件含义及作用
  • 原文地址:https://www.cnblogs.com/cumulonimbus/p/5158757.html
Copyright © 2020-2023  润新知