记录编号 |
38534 |
评测结果 |
AAAAAAA |
题目名称 |
昵称 |
最终得分 |
100 |
用户昵称 |
苏轼 |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
1.066 s |
提交时间 |
2012-04-20 15:06:58 |
内存使用 |
0.27 MiB |
显示代码纯文本
#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);
std::ios::sync_with_stdio(false);
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;
for(unsigned int j=0;j<s.length();j++) s[j]=tolower(s[j]);
w[s]++;
}
for (it=w.begin();it!=w.end();it++)
{
//cout<<(*it).first<<' '<<(*it).second<<endl;
printf("%s %d\n",it->first.c_str(),it->second);
}
w.clear();
cout<<endl;
}
return 0;
}