博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
poj1094 Sorting It All Out
阅读量:4656 次
发布时间:2019-06-09

本文共 4274 字,大约阅读时间需要 14 分钟。

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 6A

Sample Output

Sorted sequence determined after 4 relations: ABCD.Inconsistency found after 2 relations.Sorted sequence cannot be determined.Source

East Central North America 2001

题意大概是给n个变量m个不等式,不等式之间有传递性,判断这些不等式是否矛盾,若不矛盾,判断能否求出每一对变量的关系,若能求出,判断最少利用前几个不等式。

做法:传递闭包+拓补排序。

利用floyd实现传递闭包,dp[i][j]=1表示i

#include
#include
#include
#include
using namespace std;const int MAXN = 30;int n,m,dp[MAXN][MAXN],d[MAXN];bool flag;char c[4];inline int floyd() { memset(d,0,sizeof(d)); for(register int k=1; k<=n; k++) for(register int x=1; x<=n; x++) for(register int j=1; j<=n; j++) { if(dp[x][k] && dp[k][j]) dp[x][j]=1; } for(register int i=1; i<=n; i++) for(register int j=i+1; j<=n; j++) { if(dp[i][i]==1) return 1; if(dp[i][j]==1) d[j]++; if(dp[j][i]==1) d[i]++; if(dp[i][j]==1 && dp[j][i]==1) return 1; } for(register int i=1; i<=n; i++) for(register int j=i+1; j<=n; j++) if(dp[i][j]==0 && dp[j][i]==0) return 2; return 3;}int main() { while(~scanf("%d%d",&n,&m)) { if(n==0 && m==0) break; flag=false; memset(dp,0,sizeof(dp)); for(register int i=1; i<=m; i++) { scanf("%s",c+1); if(flag) continue; dp[c[1]-'A'+1][c[3]-'A'+1]=1; int u=floyd(); if(u==1) { printf("Inconsistency found after %d relations.",i); flag=true; printf("\n"); } else if(u==3) { printf("Sorted sequence determined after %d relations: ",i); queue
q; for(register int i=1; i<=n; i++) if(d[i]==0) { q.push(i); break; } while(q.size()) { int x=q.front(); q.pop(); printf("%c",x+'A'-1); for(register int i=1; i<=n; i++) if(dp[x][i]) { d[i]--; if(d[i]==0) q.push(i); } } printf(".\n"); flag=true; } } if(!flag) printf("Sorted sequence cannot be determined.\n");// for(register int i=1; i<=n; i++) {
// for(register int j=1; j<=n; j++) {
// cout<
<<" ";// }// cout<

转载于:https://www.cnblogs.com/sdfzsyq/p/9677128.html

你可能感兴趣的文章
初识Twisted(一)
查看>>
linux 软件安装篇
查看>>
Sql server数据库大小写敏感设置
查看>>
JAVA多线程-内存模型、三大特性、线程池
查看>>
RxJS速成 (下)
查看>>
无锁栈与无锁队列
查看>>
微信开发第8章 通过accesstoken将长连接转换为短链接
查看>>
[刷题]Codeforces 785D - Anton and School - 2
查看>>
四川红油的制法
查看>>
Java重写《C经典100题》 --21
查看>>
【Android基础】Fragment 详解之Fragment生命周期
查看>>
链表(裸题)
查看>>
11运算符重载
查看>>
磁盘系统的管理
查看>>
C/S
查看>>
Http Get/Post请求的区别
查看>>
STM32一键下载电路设计原理
查看>>
C语言中函数返回字符串的四种方法
查看>>
10月区块链领域投融资事件盘点
查看>>
Mybatis缓存策略
查看>>