CF Fox And Names (拓扑排序)

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

3rivestshamiradleman

output

bcdefghijklmnopqrsatuvwxyz

input

10touristpetrwjmzbmryeputonsvepifanovscottwuoooooooooooooooosubscriberrowdarktankengineer

output

Impossible

input

10petregorendagorionfeferivanilovetanyaromanovakostkadmitriyhmaratsnowbearbredorjaguarturnikcgyforever

output

aghjlnopefikdmbcqrstuvwxyz

input

7carcarecarefulcarefullybecarefuldontforgetsomethingotherwiseyouwillbehackedgoodluck

output

acbdefhijklmnogpqrstuvwxyz

拓扑排序第一题,注意特判一下下面的串是上面的串的前缀这种情况,直接输出Impossible了。

 1 #include <bits/stdc++.h>
 2 using    namespace    std;
 3
 4 bool    G[30][30];
 5 int    IN[30];
 6 int    ANS[30];
 7
 8 void    toposort(void);
 9 int    main(void)
10 {
11     int    n;
12     char    name[105][105];
13     bool    flag;
14
15     cin >> n;
16     for(int i = 0;i < n;i ++)
17         cin >> name[i];
18     for(int i = 0;i < n - 1;i ++)
19     {
20         for(int j = 0;name[i][j] && name[i + 1][j];j ++)
21         {
22             flag = false;
23             if(name[i][j] != name[i + 1][j])
24             {
25                 if(!G[name[i][j] - ‘a‘][name[i + 1][j] - ‘a‘])
26                 {
27                     G[name[i][j] - ‘a‘][name[i + 1][j] - ‘a‘] = true;
28                     IN[name[i + 1][j] - ‘a‘] ++;
29                 }
30                 flag = true;
31                 break;
32             }
33         }
34         if(!flag && strlen(name[i]) > strlen(name[i + 1]))
35         {
36             puts("Impossible");
37             return    0;
38         }
39     }
40     toposort();
41
42     return    0;
43 }
44
45 void    toposort(void)
46 {
47     queue<int>    que;
48     int    sum = 1;
49     int    k = 0;
50     int    front;
51
52     for(int i = 0;i < 26;i ++)
53         if(!IN[i])
54         {
55             ANS[k ++] = i;
56             sum ++;
57             que.push(i);
58         }
59
60     while(!que.empty())
61     {
62         front = que.front();
63         que.pop();
64         for(int i = 0;i < 26;i ++)
65             if(G[front][i])
66             {
67                 IN[i] --;
68                 if(!IN[i])
69                 {
70                     ANS[k ++] = i;
71                     que.push(i);
72                     sum ++;
73                 }
74             }
75     }
76     if(sum < 26)
77         puts("Impossible");
78     else
79     {
80         for(int i = 0;i < 26;i ++)
81             printf("%c",ANS[i] + ‘a‘);
82         puts("");
83     }
84
85     return    ;
86 }
时间: 2024-12-19 06:28:40

CF Fox And Names (拓扑排序)的相关文章

[CF #290-C] Fox And Names (拓扑排序)

题目链接:http://codeforces.com/contest/510/problem/C 题目大意:构造一个字母表,使得按照你的字母表能够满足输入的是按照字典序排下来. 递归建图:竖着切下来,将每个名字的第x个字母从上到下连接建图.然后求拓扑排序. 之所以要拓扑排序,因为要判断在x-1里面有a-->b  在x中有b-->a,这样就形成了一个环.这样一来,就不能够构造字母表了. [经验教训]:在递归建图的函数中开了两个数组,用来记录字母第一次出现和最后一次出现的位置..结果就RE在12上

Codeforces Round #290 (Div. 2) C. 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: t

codeforces 510C Fox And Names 拓扑排序

传送门:cf 510D 给定n个字符串,问能否存在这样的字母表,使得字符串的排序满足字典序.即依据新的字母表,排序满足字典序大小. 假设满足字典序,则我们可以依据已有的字符串得出各字母之间的大小关系,然后通过拓扑排序来判断是否存在可行解,输出任意解,因此只需要判断是否存在解即可. /****************************************************** * File Name: a.cpp * Author: kojimai * Create Time: 2

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

题目链接:http://codeforces.com/problemset/problem/510/C 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.

CF 274D Lovely Matrix 拓扑排序,缩点 难度:2

http://codeforces.com/problemset/problem/274/D 这道题解题思路: 对每一行统计,以小值列作为弧尾,大值列作为弧头,(-1除外,不连弧),对得到的图做拓扑排序即可. 但本题数据较大,所以需要进行缩点,把相同数值的点缩在一起,成为一个新的大点,原先的小值列向大点连接,再由大点向大值列连接,可以减少边数 举例来说,原本取值为1的有4个点,取值为2的有5个点, 不缩点,就需要20条边 缩点,只需要4+1+5=10条边 (不过我还是觉得这个方法有点投机取巧??

codeforces 510C Fox And Names 拓扑

题意:n个姓名,按照某种"字典序". 问如果存在这样的字典序,输出字典序'a'到'z'26个字母的顺序. 思路:拓扑排序.对于str[i]和str[i+1]如果在位置k出现不同,那么x=str[i][k]-'a'+1,y=str[i+1][k]-'a'+1,从x->y连一条边,y的入度in[y]++. 然后拓扑排序,如果形成环,就说明不行,不然依次输出对应字符.(ps:len1为str[i]的长度,len2为str[i+1]的长度,如果len1>len2且前len2个均相同

CF 1033C Permutation Game 拓扑+排序

题意:一个全排列,alice可以从某一个数出发,从i走到j的条件是: a[j]>a[i],而且从i到j要符合|i-j|%a[i]=0,若alice在该数有必胜的策略,输出B,否则A 思路,拓扑排序+博弈论(这题让我做的太迷了刚刚) ,用邻接表连接该数与其他数的关联,如果一开始入度为0的,即alice选择该点后,对方无法走去另一个点,alice会赢,把它们坐标存进一个数组里,再把它们连边进行分析,就可以判断出谁输谁赢,详情可看代码. #include <iostream> #include

CodeForces510 C. Fox And Names(拓扑排序)

题目链接:http://codeforces.com/problemset/problem/510/C 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 S

CF 412 D Giving Awards(拓扑排序)

The employees of the R1 company often spend time together: they watch football, they go camping, they solve contests. So, it's no big deal that sometimes someone pays for someone else. Today is the day of giving out money rewards. The R1 company CEO