A - stl 的 map(HDU 1004)

it2022-05-08  13

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
题解

题意:

找出出现次数最多的颜色

思路:

用map将颜色字符串映射到数字
Code
#include<iostream> #include<string> #include<map> using namespace std; map<string, int> ma; map<string, int>::iterator p; int main() { int n, cnt; string s; while(cin >> n) { if (n == 0) break; ma.clear(); for(int i = 0;i < n; i++) { cin>>s; ma[s]++; } cnt = 0; s = "blank"; for ( p = ma.begin() ; p != ma.end(); p++) { if(p->second >= cnt) { s = p->first; cnt = p->second; } } cout << s << endl; } }

最新回复(0)