poj1094Sorting It All Out
主题链接:
题目:
Sorting It All Out
Description
An ascending sorted sequence of distinct values is one in which some form of a less-than operator is used to order the elements from smallest to largest. For example, the sorted sequence A, B, C, D implies that A < B, B < C and C < D. in this problem, we will
give you a set of relations of the form A < B and ask you to determine whether a sorted order has been specified or not. Input
Input consists of multiple problem instances. Each instance starts with a line containing two positive integers n and m. the first value indicated the number of objects to sort, where 2 <= n <= 26. The objects to be sorted will be the first n characters of
the uppercase alphabet. The second value m indicates the number of relations of the form A < B which will be given in this problem instance. Next will be m lines, each containing one such relation consisting of three characters: an uppercase letter, the character "<" and a second uppercase letter. No letter will be outside the range of the first n letters of the alphabet. Values of n = m = 0 indicate end of input. Output
For each problem instance, output consists of one line. This line should be one of the following three:
Sorted sequence determined after xxx relations: yyy...y. Sorted sequence cannot be determined. Inconsistency found after xxx relations. where xxx is the number of relations processed at the time either a sorted sequence is determined or an inconsistency is found, whichever comes first, and yyy...y is the sorted, ascending sequence. Sample Input 4 6 Sample Output Sorted sequence determined after 4 relations: ABCD. Source |
这个题目对拓扑排序考虑的很细致。。
考虑了成环的情况。成环的情况也就是最后存在入度不为0的点。。
则计数后最后的num不等于n。。
这个题目还有就是这个题目不是对全部的信息进行综合推断,而是依据前面的假设可以得到已经成环了,或者可以得到n的大小顺序了,则后面的就不用推断了。。。所以用ok1,ok2两个变量进行控制。。
。
代码为:
#include<cstdio>
#include<stack>
#include<iostream>
#include<cstring>
#include<algorithm>
using namespace std;
const int maxn=26+10;
int n,m;
int in[maxn],Copy[maxn],map[maxn][maxn],temp[maxn];
stack<int>S;
int topo()
{
int flag=0,num=0;
while(!S.empty()) S.pop();
memcpy(Copy,in,sizeof(in));
for(int i=0;i<n;i++)
{
if(Copy[i]==0)
S.push(i);
}
while(!S.empty())
{
if(S.size()>1)
flag=1;
int Gery=S.top();
S.pop();
temp[num++]=Gery;
for(int i=0;i<n;i++)
{
if(map[Gery][i])
{
if(--Copy[i]==0)
S.push(i);
}
}
}
if(num!=n)
return 0;//成环。则已经能够确定关系了,能够标记。
if(flag)
return 1;//有多个入度为0的点,则还不确定。继续输入信息。添加条件,看能否够得到顺序。
return 2;//顺序已经得到确定。能够标记。 } int main()
{
char str[maxn];
int ok1,ok2,u,v,i,is_n;
while(~scanf("%d%d",&n,&m),n,m)
{
is_n=0;
memset(in,0,sizeof(in));
memset(map,0,sizeof(map));
ok1=ok2=0;
for(i=1;i<=m;i++)
{
scanf("%s",str);
if(!ok1&&!ok2)
{
u=str[0]-'A';
v=str[2]-'A';
if(map[u][v]==0)
{
map[u][v]=1;
in[v]++;
}
int ans=topo();
if(ans==0)
{
is_n=i;
ok2=1;
}
else if(ans==2)
{
is_n=i;
ok1=1;
}
}
}
if(ok1)
{
printf("Sorted sequence determined after %d relations: ",is_n);
for(int i=0;i<n-1;i++)
printf("%c",temp[i]+'A');
printf("%c.\n",temp[n-1]+'A');
}
if(ok2)
printf("Inconsistency found after %d relations.\n",is_n);
if(ok1==0&&ok2==0)
printf("Sorted sequence cannot be determined.\n");
}
return 0;
}
版权声明:本文博客原创文章。博客,未经同意,不得转载。
poj1094Sorting It All Out的更多相关文章
- poj1094-Sorting It All Out-拓扑排序
题意: 1).给你一些大写字母,共n个:大写字母间有m条关系: 2).举例:关系:A<B,意思就是A要排在B的前面(也就是说可能B排在A的前面 3).输出:有三种情况: 1.n个字母在前 i 条 ...
- POJ--1094--Sorting It All Out||NYOJ--349--Sorting It All Out(拓扑排序)
NYOJ的数据水一点,POJ过了是真的过了 /* 拓扑排序模板题: 每次输入都要判断有环与有序的情况,如果存在环路或者已经有序可以输出则跳过下面的输入 判断有序,通过是否在一个以上的入度为0的点,存在 ...
- poj1094Sorting It All Out——拓扑排序
题目:http://poj.org/problem?id=1094 看到此题,首先觉得这是一种层层递进的关系,所以可以想到用拓扑排序: 就像人工排序,每次需要找到一个最小的,再找到新的最小的……所以用 ...
- poj1094Sorting It All Out 拓扑排序
做拓扑排序的题目,首先要知道两条定理: 1.最后得到的拓扑数组的元素个数如果小于n,则不存在拓扑序列. (有圈) 2.如果一次入队的入度为零的点数大于1,则拓扑序列不唯一. (关系不确定) 本题有一 ...
随机推荐
- Sencha app build 出现 missing name after . operator 问题
此问题是在使用sencha app build命令后出现得 主要是 YUI Compressor压缩的时候,代码中出现了delete, interface之类的keyword导致的. 此时能够在Web ...
- Servlet的学习之Session(2)
在上一篇中我们学习了Session对象默认在一个会话过程中,由服务器创建,能保存在这个会话过程中用户访问多个web资源时产生的需要保存的数据,并在访问服务器中其他web资源时可以将这些数据从Sessi ...
- Mac 安装工具包brew
linux有命令行工具 apt-get ,Mac 下也有类似的brew 也就是HomeBrew 网址:http://brew.sh/index_zh-cn.html 可以看到mac安装的时候只需要执行 ...
- TMemoryStream、String与OleVariant互转
//////////////////////////////////////////////////////////////////////////////////功能: STRING 的内容流化到 ...
- ZigBee研究之旅(一)
*********************************************************************** 以下有引用webee公司的文档的内容,版权属于webee ...
- POJ 1273 Drainage Ditches(网络流,最大流)
Description Every time it rains on Farmer John's fields, a pond forms over Bessie's favorite clover ...
- C++编程规范之11:隐藏信息
摘要: 不要泄密,不要公开提供抽象的实体的内部信息. 为了尽量减少操作抽象的调用代码和抽象的实现之间的依赖性,必须隐藏实现内部的数据.否则,调用代码就能够访问该信息,或者更糟,操作该信息,而原来应属于 ...
- linux c正则
c 正则 -------------------------------------------------- 标准的C和C++都不支持正则表达式,但有一些函数库可以辅助C/C++程序员完成这一 ...
- svn跨机备份
#!/bin/sh svn_bak_dir='/svndata/cloudil' svn_server='svn://172.16.40.200:9999' user=adminread pass=a ...
- 传智播客成都java培训中心秀就业
传智播客成都java培训中心秀就业 2013年被称为"史上最难就业季",成都传智播客学员如何应对的呢? 成都传智播客的学员在工作经验上颇占优势,我们采用项目驱动式教学模式,具有多年开发实战经验及教学经 ...