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

这个题我的代码巨丑无比,不贴我的代码了,贴一个大佬写的(容器套容器):

 1 #include<bits/stdc++.h>
2 using namespace std;
3 const int N=30;
4 bool check(string s,string t)
5 {
6 for(int i=0;i<s.size();i++)
7 {
8 if(s[s.size()-1-i]!=t[t.size()-1-i])
9 return false;
10 }
11 return true;
12 }
13 bool cmp(string s,string t)
14 {
15 return s.size()<t.size();
16 }
17 int main()
18 {
19 int n;
20 cin>>n;
21 map<string,set<string> >s;
22 string a,b;
23 set<string>q;
24 int x;
25 for(int i=0;i<n;i++)
26 {
27 cin>>a>>x;
28 q.insert(a);
29 for(int j=0;j<x;j++)
30 {
31 cin>>b;
32 s[a].insert(b);
33 }
34 // printf("%d\n",s["])
35 }
36 map<string,set<string> >::iterator it1;
37 set<string>::iterator it2;
38 vector<string>v;
39 set<string>p;
40 for(it1=s.begin();it1!=s.end();it1++)
41 {
42 v.clear();
43 p.clear();
44 for(it2=it1->second.begin();it2!=it1->second.end();it2++)
45 {
46 v.push_back(*it2);
47 }
48 sort(v.begin(),v.end(),cmp);
49 for(int i=0;i<v.size();i++)
50 {
51 bool mark=false;
52 for(int j=i+1;j<v.size();j++)
53 {
54 if(check(v[i],v[j]))
55 mark=true;
56 }
57 if(!mark)
58 p.insert(v[i]);
59 }
60 it1->second=p;
61 }
62 cout<<q.size()<<endl;
63 for(it1=s.begin();it1!=s.end();it1++)
64 {
65 cout<<it1->first<<" "<<it1->second.size();
66 for(it2=it1->second.begin();it2!=it1->second.end();it2++)
67 {
68 cout<<" "<<*it2;
69 }
70 cout<<endl;
71 }
72 return 0;
73 }

心情一点也不愉快。

最新文章

  1. 在list_*页面显示出一级栏目下的所有二级栏目
  2. Java 邮件发送
  3. [POJ3111]K Best(分数规划, 二分)
  4. http协议(三)几种数据传输方式
  5. 分模块的maven项目调试时报Source not found的解决办法
  6. Linux (Ubuntu) 下配置VPN服务器
  7. angularJs中上传图片/文件功能:ng-file-upload
  8. Pyp 替代sed,awk的文本处理工具
  9. git 删除远程主分支及其它操作
  10. AFNetworking2.0后 进行Post请求
  11. 关于Sublime Text编辑器的实用技巧
  12. Linux三剑客之awk最佳实践
  13. 蒟蒻浅谈树链剖分之一——两个dfs操作
  14. 关于解决Mac使用docker安装SQL server for Linux 中文乱码问题
  15. 2018-计算机系机试-A
  16. shiro-redis实现session存储到redis
  17. C语言 结构体(联合体)对齐规则
  18. Linux学习笔记之七————Linux常用命令之编辑器、服务器
  19. [daily][centos][sudo] sudo 报错
  20. 20155325 2016-2017-2 《Java程序设计》第8周学习总结

热门文章

  1. 离线安装 Visual Studio Express 而不下载整个镜像文件的方法(转载)
  2. 并查集:HDU1213-How Many Tables(并查集最简单的应用)
  3. 记忆化搜索:POJ1579-Function Run Fun(最基础的记忆化搜索)
  4. Python框架之Django学习笔记(十四)
  5. LR11生成图表后修正Analysis中显示请求的地址长度过短50个字符的问题
  6. jmeter连接数据库之增删改查
  7. Java实现对cookie的增删改查
  8. python 文件(file)操作
  9. PAT1033
  10. Log4j官方文档翻译(一、基本介绍)