博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
bzoj 2456: mode【瞎搞】
阅读量:5069 次
发布时间:2019-06-12

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

这题加个#include都会MLE……

神思路,每个数抵消宇哥和它不同的数,最后剩下的就是众数

#include
int n,la,x,tot;int main(){ scanf("%d",&n); for(int i=1;i<=n;i++) { scanf("%d",&x); if(x==la) tot++; else if(!tot) la=x,tot=1; else tot--; } printf("%d",la); return 0;}

转载于:https://www.cnblogs.com/lokiii/p/9650323.html

你可能感兴趣的文章
Java中的String,StringBuilder,StringBuffer三者的区别
查看>>
Python爬虫
查看>>
LDA
查看>>
轻量级Mysql Sharding中间件——Shark
查看>>
python的列表与shell的数组
查看>>
移动国家号(MCC)
查看>>
关于TFS2010使用常见问题
查看>>
软件工程团队作业3
查看>>
python标准库——queue模块 的queue类(单向队列)
查看>>
display的值有哪些?
查看>>
火狐、谷歌、IE关于document.body.scrollTop和document.documentElement.scrollTop 以及值为0的问题...
查看>>
基于Lucene3.5.0怎样从TokenStream获得Token
查看>>
一网打尽各类Java基本数据类型转换
查看>>
FlowLayout布局
查看>>
深入理解JVM读书笔记--字节码执行引擎
查看>>
vue-搜索功能-实时监听搜索框的输入,N毫秒请求一次数据
查看>>
批处理 windows 服务的安装与卸载
查看>>
React文档翻译 (快速入门)
查看>>
nodejs fs路径
查看>>
动态规划算法之最大子段和
查看>>