比赛 |
20120420 |
评测结果 |
AAAAAAT |
题目名称 |
昵称 |
最终得分 |
85 |
用户昵称 |
Makazeu |
运行时间 |
0.000 s |
代码语言 |
C++ |
内存使用 |
0.00 MiB |
提交时间 |
2012-04-20 09:27:31 |
显示代码纯文本
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <string>
#include <iostream>
#include <cctype>
#include <map>
using namespace std;
map<string,int> hash;
int T,N;
string str;
int main()
{
freopen("nickname.in","r",stdin);
freopen("nickname.out","w",stdout);
scanf("%d\n",&T);
map<string,int>::iterator iter;
for(int i=1;i<=T;i++)
{
scanf("%d\n",&N);
for(int j=1;j<=N;j++)
{
getline(cin,str);
for(unsigned int i=0;i<str.length();i++) str[i]=tolower(str[i]);
hash[str]++;
}
iter=hash.begin();
for(;iter!=hash.end();iter++) printf("%s %d\n",iter->first.data(),iter->second);
hash.clear(); printf("\n");
}
return 0;
}