Codeforces Round #451 (Div. 2) - C. Phone Numbers (map+string)

本文介绍了一种用于整理电话簿中重复及后缀号码的算法。通过将每个人的所有电话号码反转并排序,去除那些作为其他号码后缀的部分,确保每个号码的唯一性和有效性。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

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 


题意:

给你每个名字对应的几个号码,如果一个号码是另一个号码的后缀,那么这个号码就不输出。


POINT:

给每个人的号码【反过来】先排个序,是不是后缀可以简单的判断一下相邻的了。


#include <iostream>
#include <string>
#include <string.h>
#include <math.h>
#include <vector>
#include <map>
#include <stdio.h>
#include <algorithm>
using namespace std;

map<string,int>p;
map<int,string> na;
map<string,int>pnum[22];
string ps[22][222];
int c[22];
bool cmd(string a,string b)
{
	return a<b;
}
int main()
{

	int n;
	int cnt=0;
	scanf("%d",&n);
	for(int i=1;i<=n;i++){
		string name;
		cin>>name;
		if(p[name]==0){
			p[name]=++cnt;
			na[cnt]=name;
		}
		int now=p[name];
		int num;scanf("%d",&num);
		for(int i=1;i<=num;i++){
			string number;
			cin>>number;
			reverse(number.begin(), number.end());
			if(pnum[now][number]==0){
				ps[now][++c[now]]=number;
				pnum[now][number]=1;
			}
		}
	}
	printf("%d\n",cnt);
	for(int i=1;i<=cnt;i++){
		int ci=0;
		string ans[222];
		sort(ps[i]+1,ps[i]+1+c[i],cmd);
		for(int j=1;j<c[i];j++){
			//cout<<ps[i][j]<<" ";
			string now=ps[i][j+1].substr(0,min(ps[i][j+1].length(),ps[i][j].length()));
			if(ps[i][j]==now){
				continue;
			}else{
				ci++;
				ans[ci]=ps[i][j];
			}
		}
		ans[++ci]=ps[i][c[i]];
		cout<<na[i];
		printf(" %d",ci);
		for(int j=1;j<=ci;j++){
			reverse(ans[j].begin(), ans[j].end());
			cout<<" "<<ans[j];
		}
		cout<<endl;
	}




}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值