Codeforces 898-C(水题纯模版)

题目链接

                                                                           

C. Phone Numbers

time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

Vasya has several phone books, in which he recorded the telephone numbers of his friends. Each of his friends can have one or several phone numbers.

Vasya decided to organize information about the phone numbers of friends. You will be given n strings — all entries from Vasya's phone books. Each entry starts with a friend's name. Then follows the number of phone numbers in the current entry, and then the phone numbers themselves. It is possible that several identical phones are recorded in the same record.

Vasya also believes that if the phone number a is a suffix of the phone number b (that is, the number b ends up with a), and both numbers are written by Vasya as the phone numbers of the same person, then a is recorded without the city code and it should not be taken into account.

The task is to print organized information about the phone numbers of Vasya's friends. It is possible that two different people have the same number. If one person has two numbers x and y, and x is a suffix of y (that is, y ends in x), then you shouldn't print number x. If the number of a friend in the Vasya's phone books is recorded several times in the same format, it is necessary to take it into account exactly once.

Read the examples to understand statement and format of the output better.

Input

First line contains the integer n (1 ≤ n ≤ 20) — number of entries in Vasya's phone books.

The following n lines are followed by descriptions of the records in the format described in statement. Names of Vasya's friends are non-empty strings whose length does not exceed 10. They consists only of lowercase English letters. Number of phone numbers in one entry is not less than 1 is not more than 10. The telephone numbers consist of digits only. If you represent a phone number as a string, then its length will be in range from 1 to 10. Phone numbers can contain leading zeros.

Output

Print out the ordered information about the phone numbers of Vasya's friends. First output m — number of friends that are found in Vasya's phone books.

The following m lines must contain entries in the following format "name number_of_phone_numbers phone_numbers". Phone numbers should be separated by a space. Each record must contain all the phone numbers of current friend.

Entries can be displayed in arbitrary order, phone numbers for one record can also be printed in arbitrary order.

Examples

input

2
ivan 1 00123
masha 1 00123

output

2
masha 1 00123 
ivan 1 00123 

input

3
karl 2 612 12
petr 1 12
katya 1 612

output

3
katya 1 612 
petr 1 12 
karl 1 612 

input

4
ivan 3 123 123 456
ivan 2 456 456
ivan 8 789 3 23 6 56 9 89 2
dasha 2 23 789

output

2
dasha 2 23 789 
ivan 4 789 123 2 456 

水题判断给出的名字和号码中把相同名字和号码放在一起并把号码中存在的后缀去除输出结果就对了写这博客的主要目的是对STL容器的使用


#include
using namespace std;
const int MAX=100;
stack str;
class comp
{
public:
    bool operator ()(const string &s1,const string &s2)
    {
        if(s1.size()==s2.size()&&s1!=s2)
        {
            return true;
        }
        else
            return s1.size()>s2.size();
    }
};
struct Node
{
    set    nu;
};
map  conn;
void prt(Node node)
{
    queue anq;
    map mstr;
    set::iterator it=node.nu.begin();
    for(; it!=node.nu.end(); it++)
    {
        string st=*it;
        if(mstr[st]==1)
        {
            continue;
        }

        for(int i=0; i>name>>n;
        if(conn[name].nu.size()==0)
        {
            str.push(name);
        }
        while(n--)
        {
            string num;
            cin>>num;
            conn[name].nu.insert(num);
        }
    }
    slove();
    return 0;
}

 

你可能感兴趣的:(Codeforces 898-C(水题纯模版))