zoukankan      html  css  js  c++  java
  • hdu_1029-Ignatius and the Princess IV_201310180916

    Ignatius and the Princess IV

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32767 K (Java/Others) Total Submission(s): 13419    Accepted Submission(s): 5419

    Problem Description
    "OK, you are not too bad, em... But you can never pass the next test." feng5166 says.
    "I will tell you an odd number N, and then N integers. There will be a special integer among them, you have to tell me which integer is the special one after I tell you all the integers." feng5166 says.
    "But what is the characteristic of the special integer?" Ignatius asks.
    "The integer will appear at least (N+1)/2 times. If you can't find the right integer, I will kill the Princess, and you will be my dinner, too. Hahahaha....." feng5166 says.
    Can you find the special integer for Ignatius?
     
    Input
    The input contains several test cases. Each test case contains two lines. The first line consists of an odd integer N(1<=N<=999999) which indicate the number of the integers feng5166 will tell our hero. The second line contains the N integers. The input is terminated by the end of file.
     
    Output
    For each test case, you have to output only one line which contains the special number you have found.
     
    Sample Input
    5
    1 3 2 3 3
    11
    1 1 1 1 1 5 5 5 5 5 5
    7
    1 1 1 1 1 1 1
     
    Sample Output
    3
    5
    1
     
    Author
    Ignatius.L
     
     1 #include <stdio.h>
     2 
     3 typedef struct IN
     4 {
     5     int date;
     6     int num;
     7 }IN;
     8 IN aa[500100];
     9 int s[1000100];
    10 
    11 int cmp(const void *a,const void *b)
    12 {
    13     return *(int *)a - *(int *)b;
    14 }
    15 
    16 int cmp1(const void *a,const void *b)
    17 {
    18     struct IN *c = (IN *)a;
    19     struct IN *d = (IN *)b;
    20     if(c->num!=d->num)
    21     return c->num - d->num;
    22     else
    23     return c->date - d->date;
    24 }
    25 int main()
    26 {
    27     int N;
    28     while(scanf("%d",&N)!=EOF){
    29     int i,j,count,elem;
    30     memset(aa,0,sizeof(aa));
    31     for(i=0;i<N;i++)
    32     scanf("%d",&s[i]);
    33     qsort(s,N,sizeof(s[0]),cmp);
    34     elem=s[0];count=0;j=0;i=0;
    35     while(i<N)
    36     {
    37         aa[j].date = elem;
    38         while(s[i]==elem)
    39         {
    40             count++;
    41             i++;
    42         }
    43         
    44         aa[j++].num = count;
    45         elem = s[i];
    46         count = 0;
    47     }
    48     //for(i=0;i<j;i++)
    49     //printf("%d %d
    ",aa[i].date,aa[i].num);
    50     qsort(aa,j,sizeof(aa[0]),cmp1);
    51     printf("%d
    ",aa[j-1].date);
    52 }
    53 return 0;
    54 }
     
     
  • 相关阅读:
    同一根域名的多站点登录共享
    mysql忘记管理员密码
    使用Cacti监控你的网络(四) Cacti脚本及模板
    使用Cacti时常见的问题集
    SQL Server:SQL Like 通配符特殊用法:Escape
    IS6.0 应用程序池Web园导致Session丢失
    VMware建立虚拟机无法上网
    SqlServer 添加用户 添加角色 分配权限
    教你如何在SQL Server数据库中加密数据
    sendmail邮件服务器搭载smtp和pop3认证的配置方法
  • 原文地址:https://www.cnblogs.com/xl1027515989/p/3375563.html
Copyright © 2011-2022 走看看