当前位置:   article > 正文

leetcode802. Find Eventual Safe States(python)_802. find eventual safe states c语言解法

802. find eventual safe states c语言解法

leetcode802. Find Eventual Safe States(python)


原题地址:https://leetcode.com/problems/find-eventual-safe-states/

题目

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.
  • 1
  • 2
  • 3
  • 4
  • 5

这里写图片描述

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

python代码

class Solution:
    def eventualSafeNodes(self, graph):
        """
        :type graph: List[List[int]]
        :rtype: List[int]
        """
        safe = [0] * len(graph)
        a = []
        for key, value in enumerate(graph):
            if value == []:
                safe[key] = 1
            else:
                a.append((key, value))

        flag = 1
        while flag == 1:
            temp = []
            flag = 0
            for nodes in a:
                flag1= 1
                for node in nodes[1]:
                    if safe[node] == 0:
                        flag1 = 0
                        break

                if flag1 == 1:
                    safe[nodes[0]] = 1
                    flag = 1
                else:
                    temp.append(nodes)
            a = temp
        return [i for i in range(len(graph)) if safe[i] == 1]

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34

版权声明:转载注明 http://blog.csdn.net/birdreamer/article/details/79600461

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

闽ICP备14008679号