前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Ignatius and the Princess IV hdu 1029

Ignatius and the Princess IV hdu 1029

作者头像
用户2965768
发布2018-08-30 16:26:34
3740
发布2018-08-30 16:26:34
举报
文章被收录于专栏:wymwym

Ignatius and the Princess IV

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

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

代码语言:javascript
复制

51 3 2 3 3111 1 1 1 1 5 5 5 5 5 571 1 1 1 1 1 1

Sample Output

代码语言:javascript
复制

351

Author

Ignatius.L

Recommend

We have carefully selected several similar problems for you:  1040 1074 1171 1203 1087

多元素问题,一组数一个数出现次数大于n/2。

用计数器记录元素出现次数,初始化tp=第一个数,count=1;

然后继续输入x,若tp=x,count就++否则减减;当它等于零就换一个数。

#include <iostream> using namespace std; int main() {    int N;    while(cin>>N)    {  int tp=0,count=0,x=0; for(int i=0;i<N;i++)     { scanf("%d",&x); if(count==0) tp=x,count=1; else { if(tp==x)count++; else count--; } }    printf("%d\n",tp);    }   return 0;  } 

本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2018年05月14日,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • Ignatius and the Princess IV
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档