博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Let the Balloon Rise HDU水题
阅读量:5132 次
发布时间:2019-06-13

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

题意

让你统计字符串最多的那个串,并输出

分析

直接用map统计,不断更新最大值即可

代码

#include
#include
#include
#include
using namespace std;int main(){ string s,ans; int n; //freopen("in.txt","r",stdin); while(cin>>n&&n){ map
m;//映射 int maxn=0; while(n--){ cin>>s; m[s]++; if(m[s]>maxn){ maxn=m[s]; ans=s; } } cout<
<

转载于:https://www.cnblogs.com/mch5201314/p/9803536.html

你可能感兴趣的文章
51nod 1428 活动安排问题 (贪心+优先队列)
查看>>
latex for wordpress(一)
查看>>
如何在maven工程中加载oracle驱动
查看>>
Flask 系列之 SQLAlchemy
查看>>
aboutMe
查看>>
【Debug】IAR在线调试时报错,Warning: Stack pointer is setup to incorrect alignmentStack,芯片使用STM32F103ZET6...
查看>>
一句话说清分布式锁,进程锁,线程锁
查看>>
FastDFS使用
查看>>
服务器解析请求的基本原理
查看>>
[HDU3683 Gomoku]
查看>>
下一代操作系统与软件
查看>>
[NOIP2013提高组] CODEVS 3287 火车运输(MST+LCA)
查看>>
Python IO模型
查看>>
DataGridView的行的字体颜色变化
查看>>
局域网内手机访问电脑网站注意几点
查看>>
[Serializable]的应用--注册码的生成,加密和验证
查看>>
Android-多线程AsyncTask
查看>>
LeetCode【709. 转换成小写字母】
查看>>
CF992E Nastya and King-Shamans(线段树二分+思维)
查看>>
如果没有按照正常的先装iis后装.net的顺序,可以使用此命令重新注册一下:
查看>>