A. Fox And Names

A. Fox And Names

time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

Fox Ciel is going to publish a paper on FOCS (Foxes Operated Computer Systems, pronounce: "Fox"). She heard a rumor: the authors list on the paper is always sorted in the lexicographical order.

After checking some examples, she found out that sometimes it wasn't true. On some papers authors' names weren't sorted in lexicographical order in normal sense. But it was always true that after some modification of the order of letters in alphabet, the order of authors becomes lexicographical!

She wants to know, if there exists an order of letters in Latin alphabet such that the names on the paper she is submitting are following in the lexicographical order. If so, you should find out any such order.

Lexicographical order is defined in following way. When we compare s and t, first we find the leftmost position with differing characters: si ≠ ti. If there is no such position (i. e. s is a prefix of t or vice versa) the shortest string is less. Otherwise, we compare characters si and ti according to their order in alphabet.

Input

The first line contains an integer n (1 ≤ n ≤ 100): number of names.

Each of the following n lines contain one string namei (1 ≤ |namei| ≤ 100), the i-th name. Each name contains only lowercase Latin letters. All names are different.

Output

If there exists such order of letters that the given names are sorted lexicographically, output any such order as a permutation of characters 'a'–'z' (i. e. first output the first letter of the modified alphabet, then the second, and so on).

Otherwise output a single word "Impossible" (without quotes).

Examples

Input

Copy

3
rivest
shamir
adleman

Output

Copy

bcdefghijklmnopqrsatuvwxyz

Input

Copy

10
tourist
petr
wjmzbmr
yeputons
vepifanov
scottwu
oooooooooooooooo
subscriber
rowdark
tankengineer

Output

Copy

Impossible

Input

Copy

10
petr
egor
endagorion
feferivan
ilovetanyaromanova
kostka
dmitriyh
maratsnowbear
bredorjaguarturnik
cgyforever

Output

Copy

aghjlnopefikdmbcqrstuvwxyz

Input

Copy

7
car
care
careful
carefully
becarefuldontforgetsomething
otherwiseyouwillbehacked
goodluck

Output

Copy

acbdefhijklmnogpqrstuvwxyz

题意:

          给出n个字符串,让你构造一个字母序列,让这n个字符串从小到大。

思路:

          拓扑排序

#include<stdio.h>
#include<iostream>
#include<string.h>
#include<algorithm>
#include<vector>
using namespace std;
char s[110][110];
int book[100][100],du[100],bn[100],n;
vector<int>mymap[100];
vector<char>ans;
void input()
{
	scanf("%d",&n);
	for(int i=1;i<=n;i++)
		scanf("%s",&s[i]);
}
int myfind(char a[],char b[])
{
	int lena=strlen(a);
	int lenb=strlen(b);
	int len=min(lena,lenb);
	for(int i=0;i<len;i++)
	{
		if(a[i]!=b[i])
			return i;
	}
	if(lena>lenb)
		return 100;
	else
		return 101;
}
int solve()
{
	for(int i=1;i<n;i++)
		for(int j=i+1;j<=n;j++)
		{
			int temp=myfind(s[i],s[j]);
			if(temp==100)
			{
				return 0;
			}
			else if(temp==101)
				continue;
			else if(!book[s[i][temp]-'a'][s[j][temp]-'a'])
			{
				du[s[j][temp]-'a']++;
				book[s[i][temp]-'a'][s[j][temp]-'a']=1;
				mymap[s[i][temp]-'a'].push_back(s[j][temp]-'a');
			}				
		}
	for(int k=0;k<26;k++)
		for(int i=0;i<26;i++)
		{
			if(!du[i]&&!bn[i])
			{
				bn[i]=1;
				ans.push_back((i+'a'));
				for(int j=0;j<mymap[i].size();j++)
				{
					du[mymap[i][j]]--;
				}
			}
		}
	for(int i=0;i<25;i++)
	{
		if(!bn[i]&&!du[i])
			ans.push_back((i+'a'));
	}
	if(ans.size()==26)
		return 1;
	else
		return 0;
}
int main()
{
	input();
	int tt=solve();
	if(!tt)
		cout<<"Impossible";
	else
		for(int i=0;i<ans.size();i++)
			cout<<ans[i];
	cout<<endl;
	return 0;
} 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值