当前位置:   article > 正文

LeetCode-802. Find Eventual Safe States_if there exists a node with no outgoing edges.

if there exists a node with no outgoing edges.

In a directed graph, we start at some node and every turn, walk along a directed edge of the graph.  If we reach a node that is terminal (that is, it has no outgoing directed edges), we stop.

Now, say our starting node is eventually safe if and only if we must eventually walk to a terminal node.  More specifically, there exists a natural number K so that for any choice of where to walk, we must have stopped at a terminal node in less than K steps.

Which nodes are eventually safe?  Return them as an array in sorted order.

The directed graph has N nodes with labels 0, 1, ..., N-1, where N is the length of graph.  The graph is given in the following form: graph[i] is a list of labels j such that (i, j) is a directed edge of the graph.

  1. Example:
  2. Input: graph = [[1,2],[2,3],[5],[0],[5],[],[]]
  3. Output: [2,4,5,6]
  4. Here is a diagram of the above graph.

Illustration of graph

Note:

  • graph will have length at most 10000.
  • The number of edges in the graph will not exceed 32000.
  • Each graph[i] will be a sorted list of different integers, chosen within the range [0, graph.length - 1].

题解:

深度优先搜索,cycle数组判断当前位置是否为环路节点,-1代表未访问,0代表非环也就是最终安全状态,1代表环路。

  1. class Solution {
  2. public:
  3. void dfs(vector<int> &cycle, vector<vector<int>> &graph, int begin) {
  4. if (cycle[begin] == -1) {
  5. cycle[begin] = 1;
  6. for (int i = 0; i < graph[begin].size(); i++) {
  7. dfs(cycle, graph, graph[begin][i]);
  8. if (cycle[graph[begin][i]] == 1) {
  9. return;
  10. }
  11. }
  12. cycle[begin] = 0;
  13. }
  14. }
  15. vector<int> eventualSafeNodes(vector<vector<int>>& graph) {
  16. if (graph.empty() == true) {
  17. return {};
  18. }
  19. int n = graph.size();
  20. vector<int> cycle(n, -1);
  21. for (int i = 0; i < n; i++) {
  22. dfs(cycle, graph, i);
  23. }
  24. vector<int> res;
  25. for (int i = 0; i < n; i++) {
  26. if (cycle[i] == 0) {
  27. res.push_back(i);
  28. }
  29. }
  30. return res;
  31. }
  32. };

 

声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号