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

    原题链接在这里:https://leetcode.com/problems/course-schedule-ii/

    题目:

    There are a total of n courses you have to take, labeled from 0 to n - 1.

    Some courses may have prerequisites, for example to take course 0 you have to first take course 1, which is expressed as a pair: [0,1]

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

    There may be multiple correct orders, you just need to return one of them. If it is impossible to finish all courses, return an empty array.

    For example:

    2, [[1,0]]

    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]

    4, [[1,0],[2,0],[3,1],[3,2]]

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

    题解:

    用BFS based topological sort.  若是最后res的size 没有加到 numCourses, 说明没有可行方案,返回空的array.

    若是可行,就把res转化成array.

    Time Complexity: O(V + E). Space: O(V).

    AC Java:

     1 public class Solution {
     2     public int[] findOrder(int numCourses, int[][] prerequisites) {
     3         List<Integer> res = new ArrayList<Integer>();
     4         List<List<Integer>> graph = new ArrayList<List<Integer>>();
     5         for(int i = 0; i<numCourses; i++){
     6             graph.add(new ArrayList<Integer>());
     7         }
     8         for(int [] edge : prerequisites){
     9             graph.get(edge[1]).add(edge[0]);
    10         }
    11         
    12         int [] inDegree = new int[numCourses];
    13         for(int [] edge : prerequisites){
    14             inDegree[edge[0]]++;
    15         }
    16         
    17         LinkedList<Integer> que = new LinkedList<Integer>();
    18         for(int i = 0; i<inDegree.length; i++){
    19             if(inDegree[i] == 0){
    20                 que.add(i);
    21             }
    22         }
    23         
    24         while(!que.isEmpty()){
    25             int source = que.poll();
    26             res.add(source);
    27             
    28             for(int dest : graph.get(source)){
    29                 inDegree[dest]--;
    30                 if(inDegree[dest] == 0){
    31                     que.add(dest);
    32                 }
    33             }
    34         }
    35         
    36         if(res.size() != numCourses){
    37             return new int[0];
    38         }
    39         int [] resArr = new int[numCourses];
    40         for(int i = 0; i<numCourses; i++){
    41             resArr[i] = res.get(i);
    42         }
    43         return resArr;
    44     }
    45 }

    类似Course Schedule.

    跟上 Course Schedule III.

  • 相关阅读:
    金蝶问题:不能保存已审核的单据
    在代码中设置cxTreeList按多列排序
    日积月累篇:生产任务单
    sp_reset_connection
    日积月累篇:仓库流程
    使用FreeMarker生成Word文档 仅此而已
    ASP格式化时间日期(二)
    省市区三级联动连接数据库
    利用SQL语句进行添加、删除、修改字段,表与字段的基本操作,数据库备份等
    ASP截取字数(二)
  • 原文地址:https://www.cnblogs.com/Dylan-Java-NYC/p/4868728.html
Copyright © 2011-2022 走看看