• HDUOJ1004Let the Balloon Rise


    Let the Balloon Rise

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


    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
     
    View Code
     1 #include<stdio.h>
     2 #include<string.h>
     3 char str[1000][16];
     4 char strb[1000];
     5 int main()
     6 {
     7     int n,i,j,ok,k;
     8     while(scanf("%d",&n)&&n)
     9     {
    10         memset(strb,0,sizeof(strb));
    11         for(i=0;i<n;i++)
    12         scanf("%s",str[i]);
    13         for(i=0;i<n;i++)
    14          for(j=i;j<n;j++)
    15              if(strcmp(str[i],str[j])==0)
    16                  strb[i]++;
    17              ok=0;
    18         for(i=0;strb[i]!='\0';i++)
    19             if(strb[i]>ok)
    20             {
    21                 ok=strb[i];
    22             //    printf("ok==%d",ok);//
    23                 k=i;
    24             }
    25             //printf("ok=%d\n",ok);
    26         //    if(ok!=1)
    27                 printf("%s",str[k]);
    28             //else 
    29             //    printf("0");
    30             printf("\n");
    31     }
    32     return 0;
    33 }
  • 相关阅读:
    ListView的使用(二)长按弹出上下文菜单
    自己遇到程序安装完图标不显示记录
    ListView的使用(一)
    Docker 构建私有镜像仓库
    DockerFile 编译语法详解
    Docker 添加容器SSH服务
    Docker 数据卷与容器互联
    Docker 镜像与容器管理
    Docker 容器简介与部署
    Zabbix-自带监控项与Kye
  • 原文地址:https://www.cnblogs.com/zhaojiedi1992/p/zhaojiedi_2012_07_260000.html
Copyright © 2020-2023  润新知