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 and tiaccording to their order in alphabet.
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.
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).
3 rivest shamir adleman
bcdefghijklmnopqrsatuvwxyz
10 tourist petr wjmzbmr yeputons vepifanov scottwu oooooooooooooooo subscriber rowdark tankengineer
Impossible
10 petr egor endagorion feferivan ilovetanyaromanova kostka dmitriyh maratsnowbear bredorjaguarturnik cgyforever
aghjlnopefikdmbcqrstuvwxyz
7 car care careful carefully becarefuldontforgetsomething otherwiseyouwillbehacked goodluck
acbdefhijklmnogpqrstuvwxyz
#include<iostream> #include<algorithm> #include<stdio.h> #include<string.h> #include<stdlib.h> using namespace std; char a[101][101]; int map[31][31],p[31]; int num[31]; int n,m; void TP() { int kk = 0; for(int i=0; i<26; i++) { for(int j=0; j<26; j++) { if(num[j] == 0) { p[kk++] = j; num[j]--; for(int k=0; k<26; k++) { if(map[j][k] == 1) { num[k]--; } } break; } } } if(kk<26) { printf("Impossible\n"); } else { for(int i=0; i<kk; i++) { printf("%c",p[i]+'a'); } printf("\n"); } } int main() { while(scanf("%d",&n)!=EOF) { memset(p,0,sizeof(p)); memset(map,0,sizeof(map)); memset(num,0,sizeof(num)); for(int i=0; i<n; i++) { scanf("%s",a[i]); } int x,y; int flag = 0; for(int i=1; i<n; i++) { int len1 = strlen(a[i-1]); int len2 = strlen(a[i]); if(len1 > len2) { for(int j=0; a[i-1][j]!='\0'; j++) { if(j == len2) { flag = 1; break; } if(a[i][j]!=a[i-1][j]) { x = a[i-1][j] - 'a'; y = a[i][j] - 'a'; if(map[x][y] == 0) { map[x][y] = 1; num[y]++; } break; } } } else if(len1 < len2) { for(int j=0; a[i][j]!='\0'; j++) { if(j == len1) { break; } if(a[i][j]!=a[i-1][j]) { x = a[i-1][j] - 'a'; y = a[i][j] - 'a'; if(map[x][y] == 0) { map[x][y] = 1; num[y]++; } break; } } } else { for(int j=0; a[i][j]!='\0'; j++) { if(j == len1) { break; } if(a[i][j]!=a[i-1][j]) { x = a[i-1][j] - 'a'; y = a[i][j] - 'a'; if(map[x][y] == 0) { map[x][y] = 1; num[y]++; } break; } } } } if(flag == 1) { printf("Impossible\n"); continue; } TP(); } return 0; }