博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Leetcode-911 Online Election(在线选举)
阅读量:5024 次
发布时间:2019-06-12

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

1 class TopVotedCandidate 2 { 3     public: 4         vector
> List; 5 TopVotedCandidate(vector
persons, vector
times) 6 { 7 map
m; 8 int max_count = 0; 9 int man = 0;10 for(int i = 0 ; i < times.size(); i ++)11 {12 auto tmp = m.find(persons[i]);13 if(tmp != m.end())14 {15 m[persons[i]] ++;16 }17 else18 {19 m[persons[i]] = 1;20 }21 if(m[persons[i]] >= max_count)22 {23 max_count = m[persons[i]];24 man = persons[i];25 }26 27 List.push_back(make_pair(times[i],man));28 }29 }30 31 int q(int t)32 {33 for(int i = 0; i < List.size()-1; i ++)34 {35 if(t >= List[i].first && t < List[i+1].first)36 return List[i].second;37 }38 return List[List.size()-1].second;39 }40 };

 

转载于:https://www.cnblogs.com/Asurudo/p/9692363.html

你可能感兴趣的文章
android中DatePicker和TimePicker的使用
查看>>
SpringMVC源码剖析(四)- DispatcherServlet请求转发的实现
查看>>
Android中获取应用程序(包)的大小-----PackageManager的使用(二)
查看>>
Codeforces Gym 100513M M. Variable Shadowing 暴力
查看>>
浅谈 Mybatis中的 ${ } 和 #{ }的区别
查看>>
CNN 笔记
查看>>
版本更新
查看>>
SQL 单引号转义
查看>>
start
查看>>
实现手机扫描二维码页面登录,类似web微信-第三篇,手机客户端
查看>>
PHP socket客户端长连接
查看>>
7、shell函数
查看>>
【转】Apache Jmeter发送post请求
查看>>
Nginx 基本 安装..
查看>>
【凸优化】保留凸性的几个方式(交集、仿射变换、投影、线性分式变换)
查看>>
NYOJ-613//HDU-1176-免费馅饼,数字三角形的兄弟~~
查看>>
TFS --- GrantBackup Plan Permissions Error
查看>>
傅里叶级数与积分方程
查看>>
软工作业3:用户体验分析——以“南通大学教务管理系统微信公众号”为例
查看>>
Css:背景色透明,内容不透明之终极方法!兼容所有浏览器
查看>>