CF 510C Fox And Names(拓扑排序)

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 siand 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).

Sample test(s)
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


给定几个字符串 按照某种字符序排序的字符串 求出有没有符合这种要求的字符序

主要是判断有没有环 

#include <cstdio>
#include <iostream>
#include <cstring>
#include <cmath>
#include <algorithm>
#include <string.h>
#include <string>
#include <vector>
#include <queue>

#define MEM(a,x) memset(a,x,sizeof a)
#define eps 1e-8
#define MOD 10009
#define MAXN 10010
#define MAXM 100010
#define INF 99999999
#define ll __int64
#define bug cout<<"here"<<endl
#define fread freopen("ceshi.txt","r",stdin)
#define fwrite freopen("out.txt","w",stdout)

using namespace std;

int Read()
{
    char c = getchar();
    while (c < '0' || c > '9') c = getchar();
    int x = 0;
    while (c >= '0' && c <= '9') {
        x = x * 10 + c - '0';
        c = getchar();
    }
    return x;
}

void Print(int a)
{
     if(a>9)
         Print(a/10);
     putchar(a%10+'0');
}

char name[110][110];
vector<int> vec[30];
int rd[30];
int vis[30];
int num[30];
int cnt;
int Topsort()
{
    cnt=0;
    queue<int> que;
    for(int i=0;i<26;i++)
    {
        if(vis[i]&&rd[i]==0)
        {
//            cout<<"ii "<<i<<endl;
            que.push(i);
            num[cnt++]=i;
        }
    }
    while(!que.empty())
    {
        int u=que.front(); que.pop();
        for(int i=0;i<vec[u].size();i++)
        {
            rd[vec[u][i]]--;
            if(rd[vec[u][i]]==0)
            {
                que.push(vec[u][i]);
                num[cnt++]=vec[u][i];
            }
        }
    }
//    cout<<"cnt "<<cnt<<endl;
    for(int i=0;i<26;i++)
        if(vis[i]&&rd[i]>0)
            return 1;
    return 0;
}

int main()
{
//    freopen("C.in", "r", stdin);
    int n;
    while(scanf("%d",&n)!=EOF)
    {
        for(int i=0;i<n;i++)
            scanf("%s",name[i]);
        MEM(vis,0); MEM(rd,0);
        int flag=0;
        for(int i=0;i<26;i++)
            vec[i].clear();
        for(int i=1;i<n;i++)
        {
            if(strcmp(name[i-1],name[i])==0) continue;
            int len1=strlen(name[i-1]);
            int len2=strlen(name[i]);
            for(int j=0;j<len1;j++)
            {
                if(name[i-1][j]!='\0'&&name[i][j]=='\0')
                {
                    flag=1;
                    break;
                }
                if(name[i-1][j]==name[i][j]) continue;
                int a=name[i-1][j]-'a';
                int b=name[i][j]-'a';
//                cout<<"a  "<<a<<" b "<<b<<endl;
                vis[a]=vis[b]=1;
                vec[a].push_back(b);
                rd[b]++;
                break;
            }
            if(flag)
                break;
        }
        if(flag)
            puts("Impossible");
        else
        {
            int ans=Topsort();
            if(ans)
                puts("Impossible");
            else
            {
                for(int i=0;i<cnt;i++)
                    printf("%c",num[i]+'a');
                for(int i=0;i<26;i++)
                    if(!vis[i])
                        printf("%c",i+'a');
                puts("");
            }
        }
    }
    return 0;
}





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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值