记录编号 |
196493 |
评测结果 |
AAAAAAAAAA |
题目名称 |
灰色头像 |
最终得分 |
100 |
用户昵称 |
落尘 |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.565 s |
提交时间 |
2015-10-21 20:18:21 |
内存使用 |
0.31 MiB |
显示代码纯文本
#include <functional>
#include <algorithm>
#include <iostream>
#include <cstring>
#include <iomanip>
#include <string>
#include <cstdio>
#include <vector>
#include <map>
using namespace std;
int N,ANS;
map<string,int> P;
map<string,int>::iterator pos;
map<int,vector<string> > Q;
map<int,vector<string> >::reverse_iterator ppp;
vector<string>::iterator ooo;
int main(){
ios::sync_with_stdio(false);
freopen("gray.in","r",stdin);
freopen("gray.out","w",stdout);
cin>>N;
for(int i(1);i<=N;++i){
string S; cin>>S;
P[S]++;
}
for(pos=P.begin();pos!=P.end();++pos){
if((*pos).second>2){
Q[(*pos).second].push_back((*pos).first);
ANS++;
}
}
cout<<ANS<<endl;
for(ppp=Q.rbegin();ppp!=Q.rend();++ppp){
sort((*ppp).second.begin(),(*ppp).second.end());
for(ooo=(*ppp).second.begin();ooo!=(*ppp).second.end();++ooo){
cout<<*ooo<<endl;
}
}
fclose(stdin);
fclose(stdout);
return 0;
}