今天被拓扑排序给折磨了一天,主要就是我的一个代码有点小bug,真难找。。。

先来看看我今天写的题目吧!

C. Fox And Names

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.

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

Copy
3
rivest
shamir
adleman
output

Copy
bcdefghijklmnopqrsatuvwxyz
input

Copy
10
tourist
petr
wjmzbmr
yeputons
vepifanov
scottwu
oooooooooooooooo
subscriber
rowdark
tankengineer
output

Copy
Impossible
input

Copy
10
petr
egor
endagorion
feferivan
ilovetanyaromanova
kostka
dmitriyh
maratsnowbear
bredorjaguarturnik
cgyforever
output

Copy
aghjlnopefikdmbcqrstuvwxyz
input

Copy
7
car
care
careful
carefully
becarefuldontforgetsomething
otherwiseyouwillbehacked
goodluck
output

Copy
acbdefhijklmnogpqrstuvwxyz

这个不是一个特别难的题目,就是一个比较经典的算法,拓扑排序。
然后我去学习了一下拓扑排序,学了入度表的,比较简单。
拓扑排序:大概就是你首先要建图,用vector或者链式前向星都可以,然后还要一个in数组,表示这个数的入度,
注意一下入度表示被指向的箭头数。然后就用一个for循环去找到入度为0的数,放入队列(如果有字典序的要求用优先队列就好了)
放入队列之后,再存下这个值,并且把这个指向的位置进行的入度减小,然后再判断一下被指向的数要不要放入队列。

queue<int>q;
for(int i=;i<n;i++) //n 节点的总数
if(in[i]==) q.push(i); //将入度为0的点入队列
vector<int>ans; //ans 为拓扑序列
while(!q.empty())
{
int p=q.top(); q.pop(); // 选一个入度为0的点,出队列
ans.push_back(p);
for(int i=;i<edge[p].size();i++)
{
int y=edge[p][i];
in[y]--;
if(in[y]==)
q.push(y);
}
}
if(ans.size()==n)
{
for(int i=;i<ans.size();i++)
printf( "%d ",ans[i] );
printf("\n");
}
else printf("No Answer!\n"); // ans 中的长度与n不相等,就说明无拓扑序列

这个题目就是一个拓扑的模板题,如果你会的话,应该比较容易想到,

首先我们对每个i和它之后的每一个字母进行枚举,之后的每一个字母一定要再第i个之后输出,

所以就可以用vector存图,然后再写一个tp的板子。应该就差不多这样,下面贴代码!

#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <algorithm>
#include <iostream>
#include <vector>
#include <queue>
#define inf 0x3f3f3f3f
using namespace std;
vector<int>vec[110];
char s[110][110];
int vis[110][110];
int ou[110]; void tp()
{
priority_queue<int,vector<int>,greater<int>>que;
vector<int>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<len;i++)
{
int e = vec[u][i];
ou[e]--;
if (ou[e] == 0) que.push(e);
}
}
if (ans.size() < 26) printf("Impossible\n");
else
{
for (int i = 0; i <26; i++) printf("%c", ans[i]+'a');
printf("\n");
}
} int main()
{
int n;
cin >> n;
for (int i = 0; i < n; i++) scanf("%s", s[i]);
for(int i=0;i<n;i++)
{
for(int j=i+1;j<n;j++)
{
int len1 = strlen(s[i]);
int len2 = strlen(s[j]);
int p1 = 0, p2 = 0;
while (s[i][p1] == s[j][p2] && p1 < len1&&p2 < len2) p1++, p2++;
if(p1!=len1&&p2==len2)
{
printf("Impossible\n");
return 0;
}
if(p1!=len1&&p2!=len2)
{
int u = s[i][p1] - 'a', v = s[j][p2] - 'a';
if (vis[u][v]) continue;
vis[u][v] = 1;
vec[u].push_back(v);
ou[v]++;
}
}
}
tp();
return 0;
}

  

学完这个之后,我就马上写了两个很简单的板子题,从别人博客上找的,练练手。

确定比赛名次

HDU - 1285

有N个比赛队(1<=N<=500),编号依次为1,2,3,。。。。,N进行比赛,比赛结束后,裁判委员会要将所有参赛队伍从前往后依次排名,但现在裁判委员会不能直接获得每个队的比赛成绩,只知道每场比赛的结果,即P1赢P2,用P1,P2表示,排名时P1在P2之前。现在请你编程序确定排名。 

Input输入有若干组,每组中的第一行为二个数N(1<=N<=500),M;其中N表示队伍的个数,M表示接着有M行的输入数据。接下来的M行数据中,每行也有两个整数P1,P2表示即P1队赢了P2队。 
Output给出一个符合要求的排名。输出时队伍号之间有空格,最后一名后面没有空格。

其他说明:符合条件的排名可能不是唯一的,此时要求输出时编号小的队伍在前;输入数据保证是正确的,即输入数据确保一定能有一个符合要求的排名。 
Sample Input

4 3
1 2
2 3
4 3

Sample Output

1 2 4 3
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <algorithm>
#include <iostream>
#include <vector>
#include <queue>
#define inf 0x3f3f3f3f
using namespace std;
vector<int>vec[550];
int in[550], n; void tp()
{
priority_queue<int, vector<int>, greater<int>>que;
vector<int>ans;
for (int i = 1; i <= n; i++) if (in[i] == 0) que.push(i);
while(!que.empty())
{
int u = que.top(); que.pop();
ans.push_back(u);
int len = vec[u].size();
for(int i=0;i<len;i++)
{
int v = vec[u][i];
in[v]--;
if (in[v] == 0) que.push(v);
}
}
int len = ans.size();
for (int i = 0; i < len-1; i++) printf("%d ", ans[i]);
printf("%d\n", ans[len - 1]);
} int main()
{
int m;
while(cin >> n >> m)
{
for (int i = 0; i <= n; i++) vec[i].clear();
memset(in, 0, sizeof(in));
for(int i=1;i<=m;i++)
{
int a, b;
cin >> a >> b;
vec[a].push_back(b);
in[b]++;
}
tp();
}
return 0;
}

  

Genealogical tree

POJ - 2367

The system of Martians' blood relations is confusing enough. Actually, Martians bud when they want and where they want. They gather together in different groups, so that a Martian can have one parent as well as ten. Nobody will be surprised by a hundred of children. Martians have got used to this and their style of life seems to them natural. 
And in the Planetary Council the confusing genealogical system leads to some embarrassment. There meet the worthiest of Martians, and therefore in order to offend nobody in all of the discussions it is used first to give the floor to the old Martians, than to the younger ones and only than to the most young childless assessors. However, the maintenance of this order really is not a trivial task. Not always Martian knows all of his parents (and there's nothing to tell about his grandparents!). But if by a mistake first speak a grandson and only than his young appearing great-grandfather, this is a real scandal. 
Your task is to write a program, which would define once and for all, an order that would guarantee that every member of the Council takes the floor earlier than each of his descendants.

Input

The first line of the standard input contains an only number N, 1 <= N <= 100 — a number of members of the Martian Planetary Council. According to the centuries-old tradition members of the Council are enumerated with the natural numbers from 1 up to N. Further, there are exactly N lines, moreover, the I-th line contains a list of I-th member's children. The list of children is a sequence of serial numbers of children in a arbitrary order separated by spaces. The list of children may be empty. The list (even if it is empty) ends with 0.

Output

The standard output should contain in its only line a sequence of speakers' numbers, separated by spaces. If several sequences satisfy the conditions of the problem, you are to write to the standard output any of them. At least one such sequence always exists.

Sample Input

5
0
4 5 1 0
1 0
5 3 0
3 0

Sample Output

2 4 5 3 1

这个题目就是给你n个人,然后n行,第i行代表第i个人的后代,让你按照辈分从高到低的顺序输出。
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <algorithm>
#include <iostream>
#include <vector>
#include <queue>
#define inf 0x3f3f3f3f
using namespace std;
vector<int>vec[110];
int in[110], n;
void tp()
{
priority_queue<int, vector<int>, greater<int> >que;
vector<int>ans;
for (int i = 1; i <= n; i++) if (in[i] == 0) que.push(i);
while(!que.empty())
{
int u = que.top(); que.pop();
ans.push_back(u);
int len = vec[u].size();
for(int i=0;i<len;i++)
{
int v = vec[u][i];
in[v]--;
if (in[v] == 0) que.push(v);
}
}
int len = ans.size();
for (int i = 0; i < len-1; i++) printf("%d ", ans[i]);
printf("%d\n", ans[len - 1]);
} int main()
{
cin >> n;
for(int i=1;i<=n;i++)
{
int x;
while(cin>>x&&x)
{
in[x]++;
vec[i].push_back(x);
}
}
tp();
return 0;
}

  



日常训练 dfs 之 拓扑排序的更多相关文章

  1. 基于DFS的拓扑排序

    传送门:Kahn算法拓扑排序 摘录一段维基百科上的伪码: L ← Empty list that will contain the sorted nodes S ← Set of all nodes ...

  2. HDU3342有向图判圈DFS&&拓扑排序法

    HDU3342 Legal or Not 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=3342 题目意思:一群大牛互相问问题,大牛有不会的,会被更厉害 ...

  3. 拓扑排序(基于dfs+基于队列)

    经典问题-Ordering Tasks dfs函数的返回值表示是否成环,若存在有向环,则不存在拓扑排序.不包含有向环的有向图称为有向无环图(DAG) 可以借助DFS完成拓扑排序,在访问完一个结点时把他 ...

  4. 拓扑排序详解(梅开二度之dfs版按字典序输出拓扑路径+dfs版输出全部拓扑路径

    什么是拓扑排序? 先穿袜子再穿鞋,先当孙子再当爷.这就是拓扑排序! 拓扑排序说白了其实不太算是一种排序算法,但又像是一种排序(我是不是说了个废话qwq) 他其实是一个有向无环图(DAG, Direct ...

  5. 有向无环图的应用—AOV网 和 拓扑排序

    有向无环图:无环的有向图,简称 DAG (Directed Acycline Graph) 图. 一个有向图的生成树是一个有向树,一个非连通有向图的若干强连通分量生成若干有向树,这些有向数形成生成森林 ...

  6. 拓扑排序(topsort)

    本文将从以下几个方面介绍拓扑排序: 拓扑排序的定义和前置条件 和离散数学中偏序/全序概念的联系 典型实现算法解的唯一性问题 Kahn算法 基于DFS的算法 实际例子 取材自以下材料: http://e ...

  7. 拓扑排序--UVa10305

    题目 Output: standard output Time Limit: 1 second Memory Limit: 32 MB John has n tasks to do. Unfortun ...

  8. POJ1270 Following Orders (拓扑排序)

    Following Orders Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 4254   Accepted: 1709 ...

  9. UVA-10305 Ordering Tasks (拓扑排序)

    题目大意:给出n个点,m条关系,按关系的从小到大排序. 题目分析:拓扑排序的模板题,套模板. kahn算法: 伪代码: Kahn算法: 摘一段维基百科上关于Kahn算法的伪码描述: L← Empty ...

随机推荐

  1. C# 读写App.config配置文件

    一.C#项目中添加App.config配置文件 在控制台程序中,默认会有一个App.config配置文件,如果不小心删除掉,或者其他程序需要配置文件,可以通过添加得到. 添加步骤:右键项目名称,选择“ ...

  2. Java集合类源码解析:AbstractMap

    目录 引言 源码解析 抽象函数entrySet() 两个集合视图 操作方法 两个子类 参考: 引言 今天学习一个Java集合的一个抽象类 AbstractMap ,AbstractMap 是Map接口 ...

  3. 2. 常见的Queue

    package com.gf.conn013; import java.util.ArrayList; import java.util.Iterator; import java.util.List ...

  4. python多任务-线程

    目录 多任务的概念 线程基础 单线程执行 多线程执行 主线程会等待所有子线程结束后才结束 查看线程数量 线程-注意点 线程执行代码的封装 线程的执行顺序 总结 多任务的概念 什么叫"多任务& ...

  5. Spring中的JDBC模板类入门

    1.Spring框架中提供了很多持久层的模板类来简化编程,使用模板类编写程序会变的简单 2.提供了JDBC模板,Spring框架提供的 *JdbcTemplate类 3.Spring框架可以整合Hib ...

  6. 三问助你Debug

    译者按: Debug也要三省吾身! 原文: Three Questions About Each Bug You Find 译者: Fundebug 为了保证可读性,本文采用意译而非直译.另外,本文版 ...

  7. BZOJ 1188: [HNOI2007]分裂游戏(multi-nim)

    Time Limit: 10 Sec  Memory Limit: 162 MBSubmit: 1386  Solved: 840[Submit][Status][Discuss] Descripti ...

  8. C#基础(203)实例方法和重载方法总结,构造方法与实例方法总结,this关键字

    c#方法的重载:分为实例方法重载和静态方法重载俩种 1.实例方法重载的调用特点 首先写三个Add方法和三个Sub方法 public int Add(int a,int b) { return a + ...

  9. SQL注入与防范

    首先给大家看个例子: 1)小编首先在数据库中建立了一张测试表logintable,表内有一条测试信息: 然后写了个测试程序: package com.java.SqlInject; import ja ...

  10. Bullet3的一些理解

    Bullet3应该是第三大物理引擎了,拥有宽松的授权方式,开源.在我的项目中将采用它. 碰撞世界(btCollisionWorld)是最基本的环境类. 动态世界(btDynamicsWorld)从碰撞 ...