比赛 |
20120420 |
评测结果 |
WAWWWWT |
题目名称 |
昵称 |
最终得分 |
14 |
用户昵称 |
苏轼 |
运行时间 |
0.000 s |
代码语言 |
C++ |
内存使用 |
0.00 MiB |
提交时间 |
2012-04-20 10:57:16 |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<map>
#include<cstring>
#include<algorithm>
using namespace std;
int n,m;
int main()
{
freopen ("nickname.in","r",stdin);
freopen ("nickname.out","w",stdout);
map<string,int>w;
map<string,int>::iterator it;
cin>>n;
for (int p=1;p<=n;p++)
{
cin>>m;
string s;
for (int i=0;i<m;i++)
{
cin>>s;
if (w.find(s)!=w.end())
{
w[s]++;
}
else
w[s]=1;
}
for (it=w.begin();it!=w.end();it++)
{
cout<<(*it).first<<' '<<(*it).second<<endl;
}
w.clear();
cout<<endl;
}
return 0;
}