zoukankan      html  css  js  c++  java
  • HDU--1004 Let the Balloon Rise

    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
    题意:求出现次数最多的颜色
    AC代码:
     1 #include<cstdio>
     2 #include<cstring>
     3 struct Vote
     4 {
     5     char c[20];
     6 }p[1005];
     7 int main()
     8 {
     9     int n;
    10     while(scanf("%d",&n)!=EOF&&n)
    11     {
    12         for(int i=0;i<n;i++)
    13         {
    14             scanf("%s",p[i].c);
    15         }
    16         int max=0,mark,num=1;
    17         for(int i=0;i<n;i++)
    18         {
    19             for(int j=i+1;j<n;j++)
    20             {
    21                 if(strcmp(p[i].c,p[j].c)==0)   //如果只有第一个字符相同可以写成,p[i].c[0]==p[j].c[0];是结构体里面字符串的第一个字符,以前多用的是二维数组,很少用结构体 
    22                 {
    23                     num++;
    24                 }
    25             }
    26             if(num>max)
    27             {
    28                 max=num;
    29                 mark=i;
    30             }
    31         }
    32         printf("%s
    ",p[mark].c);
    33     }
    34     return 0;
    35 }
     
  • 相关阅读:
    扑克牌顺子
    反转字符串
    左旋转字符串
    和为S的两个数
    C++中substr()详解
    STL库中的equal_range()
    和为S的连续正序列
    数组中只出现一次的数
    二叉树的深度
    mysql找安装路经,更改密码
  • 原文地址:https://www.cnblogs.com/hss-521/p/7375742.html
Copyright © 2011-2022 走看看