首页 > 代码库 > hdu 1029 Ignatius and the Princess IV
hdu 1029 Ignatius and the Princess IV
题意:给n(n为奇数)个数,接下来给出n个数,并且其中一个数出现大于等于(n+1)/2次,请输出那个数
分析:数不多,可以map记录每个数的个数,然后迭代器寻找就可以了
也可以充分利用数大于一半的条件
#include<bits/stdc++.h>using namespace std;const int maxn=1e6+5;//记得leetcode 上有过这道题//毕竟数大于一半,充分利用条件//竟然才和map一样快,看来数不多int main(){ int n,m,cnt,x; while(~scanf("%d",&n)){ cnt=0; for(int i=0;i<n;i++){ scanf("%d",&x); if(cnt==0){ cnt++;m=x; } else if(x==m)cnt++; else cnt--; } cout<<m<<endl; } return 0;}
hdu 1029 Ignatius and the Princess IV
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。