记录编号 |
137070 |
评测结果 |
AAAAAAAAAA |
题目名称 |
灰色头像 |
最终得分 |
100 |
用户昵称 |
乌龙猹 |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.339 s |
提交时间 |
2014-11-04 06:58:00 |
内存使用 |
1.07 MiB |
显示代码纯文本
#include<cstdio>
#include<iostream>
#include<map>
#include<algorithm>
using namespace std;
struct dx{
int tot;
string str;
};
dx a[100001];
int sum;
int n;
map<string,int> q;
map<string,int>::iterator it;
bool comp(dx a,dx b)
{
if(a.tot==b.tot) return a.str<b.str;
return a.tot>b.tot;
}
int main()
{
freopen("gray.in","r",stdin);
freopen("gray.out","w",stdout);
ios::sync_with_stdio(false);
cin>>n;
for(int i=1;i<=n;i++)
{
string s;
cin>>s;
q[s]++;
}
for(it=q.begin();it!=q.end();it++)
{
if(it->second >=3 )
{
a[++sum].str=it->first;
a[sum].tot=it->second;
}
}
sort(a+1,a+sum+1,comp);
cout<<sum<<endl;
for(int i=1;i<=sum;i++) cout<<a[i].str<<endl;
return 0;
}