zoukankan      html  css  js  c++  java
  • HDU1004 Let the Balloon Rise(map的简单用法)

    Let the Balloon Rise

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

    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 

    green 
    red 
    blue 
    red 
    red 

    pink 
    orange 
    pink 
    0

    Sample Output 
    red 
    pink

    Author 
    WU, Jiazhi

    Source 
    ZJCPC2004

    Recommend 
    JGShining
    关于map的一些用法: 
    http://www.cnblogs.com/BeyondAnyTime/archive/2012/08/24/2654353.html

     1 #include<bits/stdc++.h>
     2 using namespace std;
     3 int main(){
     4     int t,max;
     5     string s,ms;
     6     map<string,int> p;
     7     while(cin>>t&&t!=0){
     8         p.clear();
     9         for(int i=0;i<t;i++){
    10             cin>>s;
    11             p[s]++;// 
    12         }
    13         max=0;
    14         map<string,int>::iterator i;
    15         for(i=p.begin();i!=p.end();i++){
    16             if(max<i->second){
    17                 ms=i->first;
    18                 max=i->second;
    19             }
    20         }
    21         cout<<ms<<endl;
    22     }
    23 }
  • 相关阅读:
    数据库索引的作用和长处缺点
    Spring的依赖注入
    Spring+Ibatis集成开发实例
    IOS开发之类和对象
    关于C++ const 的全面总结
    包管理器Bower使用手冊之中的一个
    项目总算完工了
    git reset and git checkout
    unity3D中协程和线程混合
    【剑指offer】左旋转字符串
  • 原文地址:https://www.cnblogs.com/zhien-aa/p/5694141.html
Copyright © 2011-2022 走看看