博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU 1029: Ignatius and the Princess IV
阅读量:5074 次
发布时间:2019-06-12

本文共 395 字,大约阅读时间需要 1 分钟。

///@author Sycamore///@date 8/8/2017#include
using namespace std;int main(){
ios::sync_with_stdio(false); cin.tie(0); int n; while (cin >> n) {
map
v; int t,ans=-1; for (int i = 1; i <=n; i++) {
cin >> t; if(ans==-1) if (++v[t] >= ((n + 1) >> 1)) ans = t; } cout << ans << endl; } return 0;}

 

转载于:https://www.cnblogs.com/zjnu/p/7309130.html

你可能感兴趣的文章
PHP count down
查看>>
JVM参数调优:Eclipse启动实践
查看>>
(旧笔记搬家)struts.xml中单独页面跳转的配置
查看>>
不定期周末福利:数据结构与算法学习书单
查看>>
strlen函数
查看>>
python的列表与shell的数组
查看>>
关于TFS2010使用常见问题
查看>>
软件工程团队作业3
查看>>
python标准库——queue模块 的queue类(单向队列)
查看>>
火狐、谷歌、IE关于document.body.scrollTop和document.documentElement.scrollTop 以及值为0的问题...
查看>>
深入理解JVM读书笔记--字节码执行引擎
查看>>
vue-搜索功能-实时监听搜索框的输入,N毫秒请求一次数据
查看>>
批处理 windows 服务的安装与卸载
查看>>
React文档翻译 (快速入门)
查看>>
nodejs fs路径
查看>>
动态规划算法之最大子段和
查看>>
linux c:关联变量的双for循环
查看>>
深入浅出理解zend framework(三)
查看>>
python语句----->if语句,while语句,for循环
查看>>
javascript之数组操作
查看>>