poj 1093 Sorting It All Out AOV网络+拓扑

简介:

   

      一道拓扑的题,只是每增加一条拓扑一次,要注意是否有人为添加的边,也就是同一时刻有没有多个可选项。

 

      这题少加了个return 0,错了n次……注意细节。

 

       非常简单的题,结果写了70多分钟……

 

/*
author:jxy
lang:C/C++
university:China,Xidian University
**If you need to reprint,please indicate the source**
*/
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <queue>
#define INF 1E9
using namespace std;
bool vis[30];
int q[700];
int first[30],in[30],t[30];
int U[700],next[700],cnt;
int m,n;
void add(int v,int u)
{
   in[u]++;
   next[cnt]=first[v];
   first[v]=cnt;
   U[cnt++]=u;
}
char s[30];
int solve(int n)
{
    memset(s,0,sizeof(s));
    int top=-1,i,j,now,pos=0,c=0;
    bool flag=1;
    for(i=0;i<n;i++)//找到初始状态
    {
        t[q[i]]=in[q[i]];
        if(t[q[i]])continue;
        t[q[i]]=top;top=q[i];
        c++;
    }
    for(i=0;i<n;i++)
    {
        if(c>1) flag=0;//如果c>1,代表有人为添加的序列
        else if(c==0)return -1;//存在环
        s[pos++]=top+'A';
        c--;
        now=top;top=t[top];
        for(j=first[now];j!=-1;j=next[j])
          if(--t[U[j]]==0)
          {
              t[U[j]]=top;
              top=U[j];
              c++;
          }
    }
    if(flag) return pos;
    return 0;//少加了这个return 0,错了n次……
}
bool input()
{
    scanf("%d%d",&n,&m);
    if(n==0&&m==0)return 0;
    memset(first,-1,sizeof(first));
    memset(in,0,sizeof(in));
    memset(vis,0,sizeof(vis));
    cnt=0;
    int i,now=0,ans,pos,ff=0;
    char so[5];
    for(i=0;i<m;i++)
    {
       scanf("%s",so);if(ff)continue;
       add(so[0]-'A',so[2]-'A');
       if(vis[so[0]-'A']==0)
           vis[so[0]-'A']=1,q[now++]=so[0]-'A';
       if(vis[so[2]-'A']==0)
           vis[so[2]-'A']=1;q[now++]=so[2]-'A';
       ans=solve(now);//每增加一条一次拓扑
       if(ans==-1){pos=i+1;ff=1;continue;}
       else if(ans==n){ff=1;pos=i+1;continue;}
    }
    if(ans==n) printf("Sorted sequence determined after %d relations: %s.\n",pos,s);
    else if(ans==-1) printf("Inconsistency found after %d relations.\n",pos);
    else printf("Sorted sequence cannot be determined.\n");
    return 1;
}
int main()
{
    while(input());
}


 

目录
相关文章
|
28天前
|
28天前
|
网络协议 网络架构
|
25天前
|
机器学习/深度学习 人工智能 运维
企业内训|LLM大模型在服务器和IT网络运维中的应用-某日企IT运维部门
本课程是为某在华日资企业集团的IT运维部门专门定制开发的企业培训课程,本课程旨在深入探讨大型语言模型(LLM)在服务器及IT网络运维中的应用,结合当前技术趋势与行业需求,帮助学员掌握LLM如何为运维工作赋能。通过系统的理论讲解与实践操作,学员将了解LLM的基本知识、模型架构及其在实际运维场景中的应用,如日志分析、故障诊断、网络安全与性能优化等。
55 2
|
1月前
|
移动开发 网络协议 测试技术
Mininet多数据中心网络拓扑流量带宽实验
Mininet多数据中心网络拓扑流量带宽实验
55 0
|
3月前
|
数据中心
网络拓扑包括哪些类型?
【8月更文挑战第19天】网络拓扑包括哪些类型?
82 1
|
3月前
网络拓扑有哪些类型?
【8月更文挑战第19天】网络拓扑有哪些类型?
67 1
|
3月前
|
网络架构
网络拓扑
【8月更文挑战第19天】网络拓扑
63 1
|
3月前
|
运维 安全 SDN
网络拓扑设计与优化:构建高效稳定的网络架构
【8月更文挑战第17天】网络拓扑设计与优化是一个复杂而重要的过程,需要综合考虑多方面因素。通过合理的拓扑设计,可以构建出高效稳定的网络架构,为业务的顺利开展提供坚实的支撑。同时,随着技术的不断进步和业务需求的不断变化,网络拓扑也需要不断优化和调整,以适应新的挑战和机遇。
|
3月前
|
算法 网络架构
|
3月前
|
存储 监控 安全
这届网络工程师:熬夜写出了最狠的IT基础建设规划方案
这届网络工程师:熬夜写出了最狠的IT基础建设规划方案

热门文章

最新文章