• 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 }
  • 相关阅读:
    【NIO】NIO之浅谈内存映射文件原理与DirectMemory
    【搜索引擎】全文索引数据结构和算法
    【多线程】并发与并行
    【缓存】缓存穿透、缓存雪崩、key重建方案
    布隆过滤器
    多层路由器通信
    【路由】设置二级路由器
    【硬件】集线器,交换机,路由器
    JZOJ100048 【NOIP2017提高A组模拟7.14】紧急撤离
    JZOJ100045 【NOIP2017提高A组模拟7.13】好数
  • 原文地址:https://www.cnblogs.com/zhaojiedi1992/p/zhaojiedi_2012_07_260000.html
Copyright © 2020-2023  润新知