天天看點

CodeForces - 589A(字元串)

Polycarp has quite recently learned about email aliases. Of course, he used to suspect that the case of the letters doesn’t matter in email addresses. He also learned that a popular mail server in Berland bmail.com ignores dots (characters ‘.’) and all the part of an address from the first character “plus” (‘+’) to character “at” (‘@’) in a login part of email addresses.

Formally, any email address in this problem will look like “[email protected]”, where:

a “login” is a non-empty sequence of lowercase and uppercase letters, dots (‘.’) and pluses (‘+’), which starts from a letter;

a “domain” is a non-empty sequence of lowercase and uppercase letters and dots, at that the dots split the sequences into non-empty words, consisting only from letters (that is, the “domain” starts from a letter, ends with a letter and doesn’t contain two or more consecutive dots).

When you compare the addresses, the case of the characters isn’t taken into consideration. Besides, when comparing the bmail.com addresses, servers ignore the dots in the login and all characters from the first character “plus” (‘+’) to character “at” (‘@’) in login part of an email address.

For example, addresses [email protected] and [email protected] correspond to the same account. Similarly, addresses [email protected] and [email protected] also correspond to the same account (the important thing here is that the domains of these addresses are bmail.com). The next example illustrates the use of character ‘+’ in email address aliases: addresses [email protected], [email protected] and [email protected] also correspond to the same account on the server bmail.com. However, addresses [email protected] and [email protected] are not equivalent, because ‘+’ is a special character only for bmail.com addresses.

Polycarp has thousands of records in his address book. Until today, he sincerely thought that that’s exactly the number of people around the world that he is communicating to. Now he understands that not always distinct records in the address book represent distinct people.

Help Polycarp bring his notes in order by merging equivalent addresses into groups.

Input

The first line of the input contains a positive integer n (1 ≤ n ≤ 2·104) — the number of email addresses in Polycarp’s address book.

The following n lines contain the email addresses, one per line. It is guaranteed that all of them are correct. All the given lines are distinct. The lengths of the addresses are from 3 to 100, inclusive.

Output

Print the number of groups k and then in k lines print the description of every group.

In the i-th line print the number of addresses in the group and all addresses that belong to the i-th group, separated by a space. It is allowed to print the groups and addresses in each group in any order.

Print the email addresses exactly as they were given in the input. Each address should go to exactly one group.

Example

Input

6

[email protected]

[email protected]

[email protected]

[email protected]

[email protected]

[email protected]

Output

4

2 [email protected] [email protected]

2 [email protected] [email protected]

1 [email protected]

1 [email protected]

根據題目描述,大小寫不區分,是以一開始統一處理成小寫的。bmail.com這個域名的郵箱位址伺服器會忽略@之前的.和+号和@之間的所有字元,是以比對到這個域名的字元串就得處理掉這些東西,然後用map\<\string,vector >來映射處理後的字元串和答案數組。

#include<iostream>
#include<stdio.h>
#include<algorithm>
#include<string.h>
#include<string>
#include<map>
#include<set>
#include<vector>
using namespace std;
string add[];
int n;
map<string,vector<int> > m; 
int main(){
    scanf("%d",&n);
    m.clear();
    for(int i=;i<n;i++){
        cin>>add[i];
        int len=add[i].length();
        string cnt=add[i];
        for(int j=;j<len;j++){//xiaoxie
            if(cnt[j]>='A'&&cnt[j]<='Z'){cnt[j]+=;}
        }


        string newo="";
        if(len>&&(cnt.find("@bmail.com")==len-)){//judge
            int plus=;
            for(int j=;j<len;j++){
                if(cnt[j]=='+'){plus=;}
                else if(cnt[j]=='@'){plus=;}
                if(plus==&&cnt[j]!='.'){newo+=cnt[j];}
                else if(plus==){newo+=cnt[j];}
            }
        }
        else{//no
            newo=cnt;
        }


        map<string,vector<int> >::iterator it =m.find(newo);
        if(it==m.end()){m[newo].clear();
            m[newo].push_back(i);}
        else{it->second.push_back(i);}
    }
    int a=m.size();
    printf("%d\n",a);
    for(map<string,vector<int> >::iterator it =m.begin();it!=m.end();it++){
        int b=it->second.size();
        printf("%d ",b);
        for(int i=;i<b;i++){
            cout<<add[it->second[i]];
            if(i<b-){printf(" ");}
        }
        printf("\n");
    }
return ;
}