E - Fox And Names CodeForces - 510C

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 lexicographicalorder.

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 tiaccording 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

3
rivest
shamir
adleman

Output

bcdefghijklmnopqrsatuvwxyz

Input

10
tourist
petr
wjmzbmr
yeputons
vepifanov
scottwu
oooooooooooooooo
subscriber
rowdark
tankengineer

Output

Impossible

Input

10
petr
egor
endagorion
feferivan
ilovetanyaromanova
kostka
dmitriyh
maratsnowbear
bredorjaguarturnik
cgyforever

Output

aghjlnopefikdmbcqrstuvwxyz

Input

7
car
care
careful
carefully
becarefuldontforgetsomething
otherwiseyouwillbehacked
goodluck

Output

acbdefhijklmnogpqrstuvwxyz

题目大意:作者名字是按某个字母表排序的,例如第一个 r>s>a是其中的一部分顺序,我们要求出这个字母表

解题思路:是按名字经行比较,确定出入度,最后经过拓扑排序,输出字母表

注意的是当两个名字前缀相同的时候,前一个比后一个长这是肯定不合法的,我们要特别判断这个

代码如下:

#include<stdio.h>
#include<string.h>
char s[1200][1200];
int len[1200],vis[1000];
int book[100][100];
void toposort()
{
    int k=0,i,j,ans,flag;
    char c[1200];
    for(i=0; i<26; i++)
    {
        flag=0;
        for(j=0; j<26; j++)
        {
            if(vis[j]==0)
            {
                ans=j;
                flag=1;
                break;
            }
        }
        if(flag==0)
        {
            printf("Impossible\n");
            return;
        }
        vis[ans]=-1;
        c[k++]=ans+'a';
        for(j=0; j<26; j++)
        {
            if(book[ans][j]==1)
                vis[j]--;
        }
    }
    for(i=0; i<26; i++)
        printf("%c",c[i]);
    printf("\n");
}
int main()
{
    int i,j,k,n;
    scanf("%d",&n);
    for(i=0; i<n; i++)
    {
        scanf("%s",s[i]);
        len[i]=strlen(s[i]);
    }
    int flag=0;
    memset(book,0,sizeof(book));
    memset(vis,0,sizeof(vis));
    for(i=0; i<n&&flag==0; i++)
    {

        for(j=i+1; j<n; j++)
        {
            int a=len[i];
            int b=len[j];
            int temp=0;
            for(k=0; k<a&&k<b; k++)
            {
                if(s[i][k]!=s[j][k])
                {
                    temp=1;
                    if(!book[s[i][k]-'a'][s[j][k]-'a'])
                    {
                        book[s[i][k]-'a'][s[j][k]-'a']=1;
                        vis[s[j][k]-'a']++;
                    }
                    break;
                }
            }
            if(!temp)
            {
                if(k!=a)
                {
                    flag=1;
                    break;
                }
            }
        }
    }
    if(flag)
        printf("Impossible\n");
    else
        toposort();
    return 0;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值