首页 > 学院 > 开发设计 > 正文

杭电1004之Let the Balloon Rise

2019-11-06 07:16:43
字体:
来源:转载
供稿:网友

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. InputInput 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.OutputFor 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
5greenredblueredred3pinkorangepink0Sample Output
redpink
#include <cstring>using namespace std;map <string,int> s;int main(){    int n;    string str;    char a[1010][20];    while(cin>>n , n)    {        for(int i=0;i<n;i++)        {            cin>>a[i];            s[a[i]]++;        }        int maxi=0;        for(int i=0;i<n;i++)        {            if(s[a[i]]>maxi)            {                maxi=s[a[i]];            }        }        for(int i=0;i<n;i++)        {           if(s[a[i]]==maxi)           {               cout<<a[i]<<endl;               break;           }        }    }    return 0;}
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表