记录编号 |
126211 |
评测结果 |
AAAAAAAAAA |
题目名称 |
灰色头像 |
最终得分 |
100 |
用户昵称 |
水中音 |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.577 s |
提交时间 |
2014-10-11 19:51:04 |
内存使用 |
1.07 MiB |
显示代码纯文本
#include<cstdio>
#include<iostream>
#include<map>
#include<algorithm>
using namespace std;
struct www{
string s;
int zhi;
www(){zhi=0;}
bool operator<(const www&x) const
{return (zhi>x.zhi)||((zhi==x.zhi)&&(s<x.s));}
} a[100000];
map<string,int> A;
map<string,int>::iterator B;
string ss;
int n,k=0,i;
int main()
{
freopen("gray.in","r",stdin);
freopen("gray.out","w",stdout);
scanf("%d",&n);
for(i=1;i<=n;i++){cin>>ss;A[ss]++;}
for(B=A.begin();B!=A.end();B++)
if((*B).second>=3)
{
k++;
a[k].s=(*B).first;
a[k].zhi=(*B).second;
}
sort(a+1,a+(k+1));
cout<<k<<endl;
for(i=1;i<=k;i++) cout<<a[i].s<<endl;
return 0;
}