zoukankan      html  css  js  c++  java
  • 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 }
  • 相关阅读:
    C++覆盖、重载、多态区别
    C++的模板与类属类
    虚函数表和虚基类表
    常用的设计模式
    计算机内存中的对齐和C++ 类的存储空间大小
    C++的多态
    前端框架你究竟选什么
    [zt]程序员的本质
    javascript
    Web开发人员应有的15本免费电子书
  • 原文地址:https://www.cnblogs.com/zhaojiedi1992/p/zhaojiedi_2012_07_260000.html
Copyright © 2011-2022 走看看