codeforces510C. Fox And Names【拓扑排序】

来源:互联网 发布:阅读软件塞班版 编辑:程序博客网 时间:2024/06/05 10:21

C. 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 inlexicographical 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 andti 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
3rivestshamiradleman
output
bcdefghijklmnopqrsatuvwxyz
input
10touristpetrwjmzbmryeputonsvepifanovscottwuoooooooooooooooosubscriberrowdarktankengineer
output
Impossible
input
10petregorendagorionfeferivanilovetanyaromanovakostkadmitriyhmaratsnowbearbredorjaguarturnikcgyforever
output
aghjlnopefikdmbcqrstuvwxyz
input
7carcarecarefulcarefullybecarefuldontforgetsomethingotherwiseyouwillbehackedgoodluck
output
acbdefhijklmnogpqrstuvwxyz

题意:给出N个字符串判断这些字符串是否是按照某一个26个字母的排列的字典序排列的如果有输出这个序列

拓扑排序

#include<iostream>#include<cstdio>#include<cstdlib>#include<cstring>#include<algorithm>#include<cmath>#include<queue>#include<list>#include<vector>using namespace std;const int maxn=110;char str[maxn][maxn];int indgree[30];bool map[30][30];bool vis[maxn][maxn];int ans[30];bool topo(){for(int i=0;i<26;++i){int pos=-1;for(int j=0;j<26;++j){if(indgree[j]==0){pos=j;break;}}if(pos==-1)return false;ans[i]=pos;indgree[pos]=-1;for(int j=0;j<26;++j){if(map[pos][j]){indgree[j]--;}}}return true;}int main(){int n,i,j,k;scanf("%d",&n);for(i=1;i<=n;++i){scanf("%s",str[i]+1);}bool sign=true;for(i=1;i<=100;++i){if(!sign)break;for(j=1;j<=n;++j){if(str[j][i]!=str[j-1][i]&&!vis[j][j-1]){if(i<=strlen(str[j-1]+1)&&i>strlen(str[j]+1)){sign=false;break;}if(i>strlen(str[j-1]+1)){vis[j][j-1]=true;continue;}if(!map[str[j-1][i]-'a'][str[j][i]-'a'])indgree[str[j][i]-'a']++;map[str[j-1][i]-'a'][str[j][i]-'a']=true;vis[j][j-1]=true;}}}if(!topo()||!sign){printf("Impossible\n");}else {for(i=0;i<26;++i){printf("%c",ans[i]+'a');}}printf("\n");return 0;}


0 0
原创粉丝点击