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.

  • 相关阅读:
    apue-ubuntu环境搭建
    visualgdb 调试arm
    CMake速记
    umask
    转换函数conversion function
    c++ hex string array 转换 串口常用
    tcp与串口透传(select)
    sqlite3数据库修复SQLite-database disk image is malformed
    container_of宏
    shell 入门学习
  • 原文地址:https://www.cnblogs.com/Dylan-Java-NYC/p/4868728.html
Copyright © 2011-2022 走看看