前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >HDOJ 1004

HDOJ 1004

作者头像
用户1154259
发布2018-01-17 14:16:59
5150
发布2018-01-17 14:16:59
举报

Let the Balloon Rise

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

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

代码语言:javascript
复制
 1 #include <stdio.h>
 2 #include <string.h>
 3 #include <stdlib.h>
 4 
 5 char ballons[1000][15];
 6 int sum[1000];
 7 int ballons_idx;
 8 int n;
 9 
10 int InBallons(char* tmp)
11 {
12     int i;
13     for (i=0;i<ballons_idx;i++)
14     {
15         if (strcmp(tmp,ballons[i]) == 0)
16         {
17             sum[i]++;
18             return 1;
19         }
20     }
21     return 0;
22 }
23 int FindMax()
24 {
25     int i, max=-1, idx=0;
26     for (i=0;i<ballons_idx;i++)
27     {
28         if (sum[i]>max)
29         {
30             max = sum[i];
31             idx = i;
32         }         
33     }
34     return idx;
35 }
36 void main()
37 {
38     int i;
39     char tmp[15];
40     scanf("%d",&n);
41 
42     while(n)
43     {
44         ballons_idx = 0;
45         memset(sum,0,sizeof(int)*1000);
46         for (i=0;i<n;i++)
47         {
48             scanf("%s",tmp);
49             if (InBallons(tmp) == 0)
50             {
51                 strcpy(ballons[ballons_idx++],tmp);
52             }
53         }
54         printf("%s\n",ballons[FindMax()]);
55         scanf("%d",&n);
56     }
57 }
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2012-09-19 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • Let the Balloon Rise
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档