IgnatiusandthePrincessIVhdu1029


Ignatius and the Princess IV

Time Limit: 2000/1000 MS (Java/Others)Memory Limit: 65536/32767 K (Java/Others) Total Submission(s): 41121Accepted 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

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

Sample Output

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 ",tp); } return 0; }

优质内容筛选与推荐>>
1、Redis 内存管理与事件处理
2、Excel文件导入到数据库
3、linux学习-DAY1-centos的基本配置,linux的基本命令
4、IntelliJ IDEA 2017版 springloaded实现热部署
5、10.30 正睿停课训练 Day12


长按二维码向我转账

受苹果公司新规定影响,微信 iOS 版的赞赏功能被关闭,可通过二维码转账支持公众号。

    阅读
    好看
    已推荐到看一看
    你的朋友可以在“发现”-“看一看”看到你认为好看的文章。
    已取消,“好看”想法已同步删除
    已推荐到看一看 和朋友分享想法
    最多200字,当前共 发送

    已发送

    朋友将在看一看看到

    确定
    分享你的想法...
    取消

    分享想法到看一看

    确定
    最多200字,当前共

    发送中

    网络异常,请稍后重试

    微信扫一扫
    关注该公众号