码迷,mamicode.com
首页 > 其他好文 > 详细

[LeetCode] Find Eventual Safe States 找到最终的安全状态

时间:2018-07-16 21:13:09      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:cal   direct   rmi   stopped   ict   safe   exists   diff   output   

 

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.

技术分享图片

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].

 

s

 

[LeetCode] Find Eventual Safe States 找到最终的安全状态

标签:cal   direct   rmi   stopped   ict   safe   exists   diff   output   

原文地址:https://www.cnblogs.com/grandyang/p/9319966.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!