码迷,mamicode.com
首页 > 其他好文 > 详细

hdu1029

时间:2017-03-19 11:09:30      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:bsp   scan   cte   opened   open   ace   turn   names   nbsp   

hdu1029

找出数列中出现(N+1)/2次的数,暴力模拟

技术分享
 1 #include<stdio.h>
 2 #include<map>
 3 using namespace std;
 4 
 5 int main(){
 6     int n;
 7     while(scanf("%d",&n)!=EOF){
 8         map<int,int>m;
 9         int ans=0,tmp=0;
10         for(int i=1;i<=n;++i){
11             int a;
12             scanf("%d",&a);
13             m[a]++;
14             if(m[a]>ans){
15                 ans=m[a];
16                 tmp=a;
17             }
18         }
19         printf("%d\n",tmp);
20     }
21     return 0;
22 }
View Code

 

hdu1029

标签:bsp   scan   cte   opened   open   ace   turn   names   nbsp   

原文地址:http://www.cnblogs.com/cenariusxz/p/6578283.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!