Codeforces Round451C

来源:互联网 发布:pyqt4.11.4 linux 编辑:程序博客网 时间:2024/05/16 06:12
中文题意:打印朋友们的电话号码,一个人可以有很多个电话号码,如果他的一个电话号码是以另一个电话号码结尾,就不输出。涉及知识点:map,set,还有字典树

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
2ivan 1 00123masha 1 00123
output
2masha 1 00123 ivan 1 00123 
input
3karl 2 612 12petr 1 12katya 1 612
output
3katya 1 612 petr 1 12 karl 1 612 
input
4ivan 3 123 123 456ivan 2 456 456ivan 8 789 3 23 6 56 9 89 2dasha 2 23 789
output
2dasha 2 23 789 ivan 4 789 123 2 456 

import java.util.HashSet;import java.util.Hashtable;import java.util.Scanner;import java.util.Set;public class C {   public static void main(String[] args) {   Scanner input=new Scanner(System.in);   int N=input.nextInt();   Hashtable<String,Set<String>>friends=new Hashtable<>();   for(int i=0;i<N;++i) {   String name=input.next();   int m=input.nextInt();   if(!friends.containsKey(name))   friends.put(name, new HashSet<String>());   Set<String>set=friends.get(name);   for(int j=0;j<m;++j)   set.add(input.next());   }      System.out.println(friends.size());   for(String name:friends.keySet()) {   Set<String>set=friends.get(name);   Set<String>actual=new HashSet<String>();   for(String num:set) {   boolean fail=false;   for(String other:set) {   if(other.equals(num))continue;   if(other.endsWith(num)) {   fail=true;   break;   }   }   if(!fail)   actual.add(num);   }   System.out.print(name+" "+actual.size());   for(String num:actual)   System.out.print(" "+num);   System.out.println();   }   }}