zoukankan      html  css  js  c++  java
  • Leetcode** 210. Course Schedule II

    Description: There are a total of n courses you have to take labelled from 0 to n - 1.

    Some courses may have prerequisites, for example, if prerequisites[i] = [ai, bi] this means you must take the course bi before the course ai.

    Given the total number of courses numCourses and a list of the prerequisite pairs, return the ordering of courses you should take to finish all courses.

    If there are many valid answers, return any of them. If it is impossible to finish all courses, return an empty array.

    Link: 210. Course Schedule II

    Examples:

    Example 1:
    Input: numCourses = 2, prerequisites = [[1,0]]
    Output: [0,1]
    Explanation: There are a total of 2 courses to take. To take course 1 you should have finished course 0. 
    So the correct course order is [0,1]. Example 2: Input: numCourses = 4, prerequisites = [[1,0],[2,0],[3,1],[3,2]] Output: [0,2,1,3] Explanation: There are a total of 4 courses to take. To take course 3 you should have finished both courses 1 and 2.
    Both courses 1 and 2 should be taken after you finished course 0. So one correct course order is [0,1,2,3]. Another correct ordering is [0,2,1,3]. Example 3: Input: numCourses = 1, prerequisites = [] Output: [0]

    思路: 这道题是207的升级版,需要在可以成功安排所有课程的情况下,返回任意一种安排方式。因为不是返回所有可能的结果,就变得简单很多。只需要在207的基础上,添加一条路径。

    class Solution(object):
        def findOrder(self, numCourses, prerequisites):
            """
            :type numCourses: int
            :type prerequisites: List[List[int]]
            :rtype: List[int]
            """
            self.pre = collections.defaultdict(list)
            for p in prerequisites:
                self.pre[p[0]].append(p[1])
            self.visited = [0]*numCourses
            self.path = []
            for i in range(numCourses):
                if not self.dfs(i):
                    return []
            return self.path
        
        def dfs(self, i):
            if self.visited[i] == 1: return True
            if self.visited[i] == 2: return False
            self.visited[i] = 2
            for b in self.pre[i]:
                if not self.dfs(b): return False
            self.visited[i] = 1
            self.path.append(i)
            return True

    日期: 2021-04-20  时光不辜负

  • 相关阅读:
    怎么把pdf转换成word文件
    怎么把pdf文件转换成word文件教程
    pdf转换成word转换器哪个好用
    pdf格式怎么转换成word格式
    pdf文件怎么转换成word教程
    怎么把pdf文件转换成word文件
    福大软工1816 · 第二次作业
    福大软工1816 · 第一次作业
    ER图
    数据定义分析、数据操纵分析、数据完整性分析、数据安全性分析、并发处理分析、数据库性能分析
  • 原文地址:https://www.cnblogs.com/wangyuxia/p/14680683.html
Copyright © 2011-2022 走看看