zoukankan      html  css  js  c++  java
  • 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): 165255    Accepted Submission(s): 65779


    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
     
    题意:输出颜色出现次数最多的颜色
     
    #include<iostream>
    #include<string.h>
    #include<string>
    #include<algorithm>
    #include<math.h>
    #include<map>
    #include<set>
    using namespace std;
    map<string,int>m;
    string s;
    int main()
    {
      int n;
      while(cin>>n&&n)
      {
        int cnt,mx=0;
        m.clear();
        for(int i=0;i<n;i++)
        {
            cin>>s;
            if(m.count(s)==0)
                m[s]=1;
            else
                m[s]++;
            mx=max(mx,m[s]);
        }
        
        map<string,int>::iterator it;
        for(it=m.begin();it!=m.end();it++)
        {
          cnt=it->second;
          if(cnt==mx)
          {
              cout<<it->first<<endl;
              break;
          }
        }
      }
      
        return 0;
    }
  • 相关阅读:
    [bbk4999] 第100集 第12章 数据移植 06
    [bbk4992] 第98集 第12章 数据移植 04
    [bbk0000] 第101集 第12章 数据移植 08 本章案例 > 使用ORACLE_DATAPUMP擎创建外部表
    PL/SQL
    [zz]Python:time.clock() vs. time.time()
    MVC简介
    ajax_get/post_两级联动
    Ajax
    JAVAUML
    类与接口的区别
  • 原文地址:https://www.cnblogs.com/-citywall123/p/11238008.html
Copyright © 2011-2022 走看看