今天被拓扑排序给折磨了一天,主要就是我的一个代码有点小bug,真难找。。。
先来看看我今天写的题目吧!
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 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.
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
这个不是一个特别难的题目,就是一个比较经典的算法,拓扑排序。
然后我去学习了一下拓扑排序,学了入度表的,比较简单。拓扑排序:大概就是你首先要建图,用vector或者链式前向星都可以,然后还要一个in数组,表示这个数的入度,注意一下入度表示被指向的箭头数。然后就用一个for循环去找到入度为0的数,放入队列(如果有字典序的要求用优先队列就好了)放入队列之后,再存下这个值,并且把这个指向的位置进行的入度减小,然后再判断一下被指向的数要不要放入队列。queue q;for(int i=0;i
这个题目就是一个拓扑的模板题,如果你会的话,应该比较容易想到,
首先我们对每个i和它之后的每一个字母进行枚举,之后的每一个字母一定要再第i个之后输出,
所以就可以用vector存图,然后再写一个tp的板子。应该就差不多这样,下面贴代码!
#include#include #include #include #include #include #include #define inf 0x3f3f3f3fusing namespace std;vector vec[110];char s[110][110];int vis[110][110];int ou[110];void tp(){ priority_queue ,greater >que; vector ans; for(int i=0;i<26;i++) { if (ou[i] == 0) que.push(i); } while(!que.empty()) { int u = que.top(); que.pop(); int len = vec[u].size(); ans.push_back(u); for(int i=0;i > n; for (int i = 0; i < n; i++) scanf("%s", s[i]); for(int i=0;i
学完这个之后,我就马上写了两个很简单的板子题,从别人博客上找的,练练手。
确定比赛名次
Input输入有若干组,每组中的第一行为二个数N(1<=N<=500),M;其中N表示队伍的个数,M表示接着有M行的输入数据。接下来的M行数据中,每行也有两个整数P1,P2表示即P1队赢了P2队。 Output给出一个符合要求的排名。输出时队伍号之间有空格,最后一名后面没有空格。 其他说明:符合条件的排名可能不是唯一的,此时要求输出时编号小的队伍在前;输入数据保证是正确的,即输入数据确保一定能有一个符合要求的排名。 Sample Input
4 31 22 34 3
Sample Output
1 2 4 3
#include#include #include #include #include #include #include #define inf 0x3f3f3f3fusing namespace std;vector vec[550];int in[550], n;void tp(){ priority_queue
Genealogical tree
Input
Output
Sample Input
504 5 1 01 05 3 03 0
Sample Output
2 4 5 3 1 这个题目就是给你n个人,然后n行,第i行代表第i个人的后代,让你按照辈分从高到低的顺序输出。
#include#include #include #include #include #include #include #define inf 0x3f3f3f3fusing namespace std;vector vec[110];int in[110], n;void tp(){ priority_queue