22. Course Schedule II

Link to the problem

Description

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.

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

Idea

Run a DFS and push finished nodes to a vector.

Solution

class Solution {
private:
    bool dfs(int v, unordered_map<int, vector<int> > &graph, unordered_set<int> &visited,
            unordered_set<int> &finished, vector<int> &output) {
        if (finished.find(v) != finished.end()) return true;
        if (visited.find(v) != visited.end()) return false;
        visited.insert(v);
        for (auto &nbr : graph[v]) {
            if (!dfs(nbr, graph, visited, finished, output)) {
                return false;
            }
        }
        visited.erase(v);
        finished.insert(v);
        output.push_back(v);
        return true;
    }
public:
    vector<int> findOrder(int numCourses, vector<pair<int, int> > &prerequisites) {
        unordered_map<int, vector<int> > graph;
        for (auto &prereq : prerequisites) {
            graph[prereq.first].push_back(prereq.second);
        }
        vector<int> rtn;
        unordered_set<int> visited, finished;
        for (int i = 0; i < numCourses; ++i) {
            if (!dfs(i, graph, visited, finished, rtn)) return vector<int> {};
        }
        return rtn;
    }
};

44 / 44 test cases passed.
Runtime: 21 ms

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡書系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

  • **2014真題Directions:Read the following text. Choose the be...
    又是夜半驚坐起閱讀 11,262評論 0 23
  • 一夜無眠的江小寒,翻來覆去都睡不著,然后在第二天就一覺睡到了下午三點(diǎn)才懶洋洋地自然醒。 下午茶時(shí)間,樓下的甜品店又...
    任墨閱讀 674評論 0 1
  • 山藥是人們所熟悉的一種燉湯用料,它的別名叫懷山藥,因山藥的產(chǎn)地甚廣,而地處焦作的質(zhì)地最好。山藥連著一個(gè)藥字,很多人...
    海綿bo寶閱讀 534評論 0 0

友情鏈接更多精彩內(nèi)容