比赛 20120420 评测结果 WAWTTTT
题目名称 昵称 最终得分 14
用户昵称 kaaala 运行时间 0.000 s
代码语言 C++ 内存使用 0.00 MiB
提交时间 2012-04-20 09:13:07
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<cmath>
#include<algorithm>
#include<string>
#include<map>

using namespace std;

map<string,int>tree;
map<string,int>::iterator it;
int N,Q;

int main()
{
	freopen("nickname.in","r",stdin);
	freopen("nickname.out","w",stdout);
	scanf("%d",&Q);
	while(Q--)
	{
		scanf("%d\n",&N);
		for(int i=1;i<=N;i++)
		{
			string str;
			cin>>str;
			for(int j=0;j<str.length();j++)
				if(str[j]<='Z')
					str[j]+=26;
			tree[str]++;
		}
		for(it=tree.begin();it!=tree.end();it++)
			printf("%s %d\n",it->first.c_str(),it->second);
		tree.clear();
	}
	return 0;
}