码迷,mamicode.com
首页 > 其他好文 > 详细

HDU 1004

时间:2014-07-31 23:46:50      阅读:251      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   io   div   amp   log   

第一次写map   纪念

1
#include <map> 2 #include <cstdio> 3 #include <iostream> 4 #include <string> 5 #include <cstring> 6 #include <string.h> 7 using namespace std; 8 map<string,int> a; 9 int main(){ 10 int t,max1; 11 string s,k; 12 while(scanf("%d",&t)!=EOF){ 13 if(t==0)break; 14 max1=0; 15 while(t--){ 16 cin>>s; 17 a[s]++; 18 if(a[s]>max1){max1=a[s];k=s;} 19 } 20 cout<<k<<endl; 21 } 22 return 0; 23 }

 

HDU 1004,布布扣,bubuko.com

HDU 1004

标签:style   blog   color   os   io   div   amp   log   

原文地址:http://www.cnblogs.com/Mr-Xu-JH/p/3883756.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!