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): 80469    Accepted Submission(s): 30293


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所以写的比较水

 1 #include<iostream>
 2 #include<cstring>
 3 #include<cstdio>
 4 using namespace std;
 5 
 6 struct S
 7 {
 8     char s[20];
 9     int n;
10 }X[1010];
11 
12 int main()
13 {
14     char s[20];
15     int n,i,m,max;
16     while(cin>>n,n)
17     {
18         max=1;///因为输入为0的时候跳出max可以直接从1开始
19         memset(X,0,sizeof(X));
20         m=0;///标记有多少个不同的字符串
21         while(n--)
22         {
23             cin>>s;
24             for(i=0;i<m;i++)
25                 if(!strcmp(s,X[i].s)){
26                     X[i].n++;
27                     if(X[i].n>max)
28                         max=X[i].n;
29                     break;
30                 }
31             if(i==m){
32                 strcat(X[i].s,s);
33                 X[m++].n=1;
34             }
35         }
36         for(i=0;i<m;i++)
37             if(max==X[i].n)
38             {
39                 puts(X[i].s);
40                 break;
41             }
42     }
43     return 0;
44 }

 

posted @ 2015-01-25 22:20  乱齐八糟  阅读(107)  评论(0编辑  收藏  举报