ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

1146 Topological Order (25 point(s))

2021-03-11 17:31:41  阅读:178  来源: 互联网

标签:25 1146 int v2 vector ans include Order out


思路:

按照给定序列,如果是拓扑序列,那么就输出序号,序号从 0 开始。

1146 Topological Order (25 point(s))

This is a problem given in the Graduate Entrance Exam in 2018: Which of the following is NOT a topological order obtained from the given directed graph? Now you are supposed to write a program to test each of the options.

gre.jpg

Example:

#include<iostream>
#include<vector>
#include<unordered_set>
#include<vector>
using namespace std;

struct Graph {
    int Nv;
    int Ne;
    vector<unordered_set<int>> in;
    vector<unordered_set<int>> out;
};

bool isTopological(Graph G, vector<int> &ans)
{
    for(auto &x : ans) {
        if(!G.in[x].empty()) return false;
        for(auto y : G.out[x]) G.in[y].erase(x);
    }
    return true;
}

int main()
{
    int  N, M, K;
    cin >> N >> M;
    Graph G;
    G.Nv = N, G.Ne = M, G.in.resize(N+1), G.out.resize(N+1);
    for(int i = 0 ; i < M; i++) {
        int v1, v2;
        cin >> v1 >> v2;
        G.out[v1].insert(v2), G.in[v2].insert(v1);
    }
    cin >> K;
    vector<int> ans;
    for(int i = 0; i < K; i++) {
        vector<int> tmp(N);
        for(int k = 0; k < N; k++) cin >> tmp[k];
        if(!isTopological(G, tmp)) ans.push_back(i);
    }
    for(auto x = ans.begin(); x != ans.end(); x++)
        cout<< (x == ans.begin() ? "" : " ") << *x ;
}

 

标签:25,1146,int,v2,vector,ans,include,Order,out
来源: https://blog.csdn.net/u012571715/article/details/114674623

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有