• 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 }
  • 相关阅读:
    指针2
    学习笔记day3
    学习笔记day2
    学习笔记day1
    lighttpd启用支持IPv6
    GPL/widedhcpv6/dhcp6c源代码分析
    有多个vsftpd进程运行
    Java学习笔记day1
    python_day4
    python_day3.2
  • 原文地址:https://www.cnblogs.com/zhien-aa/p/5694141.html
Copyright © 2020-2023  润新知