当前位置:   article > 正文

802. Find Eventual Safe States_csdn zjucor

csdn zjucor

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.

Example:
Input: graph = [[1,2],[2,3],[5],[0],[5],[],[]]
Output: [2,4,5,6]
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].

思路:用出度,入度的思想来考虑,结合BFS

  1. class Solution:
  2. def eventualSafeNodes(self, graph):
  3. """
  4. :type graph: List[List[int]]
  5. :rtype: List[int]
  6. """
  7. n = len(graph)
  8. outDegree = [0]*n
  9. zero_out = []
  10. point2 = [set() for _ in range(len(graph))]
  11. for i,a in enumerate(graph):
  12. if not a: zero_out.append(i)
  13. outDegree[i] += len(a)
  14. for v in a: point2[v].add(i)
  15. mark = [False]*len(graph)
  16. while zero_out:
  17. t = zero_out.pop(0)
  18. mark[t] = True
  19. for s in point2[t]:
  20. outDegree[s] -= 1
  21. if outDegree[s]==0:
  22. zero_out.append(s)
  23. return [i for i in range(n) if mark[i]]


声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小惠珠哦/article/detail/995333
推荐阅读
相关标签
  

闽ICP备14008679号