UVA 10420

#include<iostream>
#include<map>
#include<string>
using namespace std; 
int main()
{
    map<string ,int> m;
    int n;
    cin>>n;
    for(int i=0;i<n;i++)
    {
        string s;
        string t;
        cin>>s;
        m[s]++;
        getline(cin,t);
    }
    for(map<string,int>::iterator it=m.begin();it!=m.end();it++)
        cout<<it->first<<" "<<it->second<<endl;
    return 0;
}

 

posted @ 2012-04-28 12:24  open your eyes  阅读(128)  评论(0编辑  收藏  举报