LeetCode-207. Course Schedule [C++][Java]

LeetCode-207. Course ScheduleLevel up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.https://leetcode.com/problems/course-schedule/

There are a total of numCourses courses you have to take, labeled from 0 to numCourses - 1. You are given an array prerequisites where prerequisites[i] = [ai, bi] indicates that you must take course bi first if you want to take course ai.

  • For example, the pair [0, 1], indicates that to take course 0 you have to first take course 1.

Return true if you can finish all courses. Otherwise, return false.

Example 1:

Input: numCourses = 2, prerequisites = [[1,0]]
Output: true
Explanation: There are a total of 2 courses to take. 
To take course 1 you should have finished course 0. So it is possible.

Example 2:

Input: numCourses = 2, prerequisites = [[1,0],[0,1]]
Output: false
Explanation: There are a total of 2 courses to take. 
To take course 1 you should have finished course 0, and to take course 0 you should also have finished course 1. So it is impossible.

Constraints:

  • 1 <= numCourses <= 2000
  • 0 <= prerequisites.length <= 5000
  • prerequisites[i].length == 2
  • 0 <= ai, bi < numCourses
  • All the pairs prerequisites[i] are unique.

【C++】

class Solution {
public:
    bool canFinish(int numCourses, vector<vector<int>>& prerequisites) {
        vector<vector<int>> graph(numCourses,  vector<int>());
        vector<int> indegree(numCourses, 0);
        for (const auto& prerequisite : prerequisites) {
            graph[prerequisite[1]].push_back(prerequisite[0]);
            ++indegree[prerequisite[0]];
        }
        queue<int> q;
        for (int i = 0; i < indegree.size(); i++) {
            if (!indegree[i]) {q.push(i);}
        }
        while (!q.empty()) {
            int u = q.front(); q.pop();
            for (auto v : graph[u]) {
                --indegree[v];
                if (!indegree[v]) {q.push(v);}
            }
        }
        for (int i = 0; i < indegree.size(); i++) {
            if (indegree[i]) {return false;}
        }
        return true;
    }
};

【Java】

class Solution {
    public boolean canFinish(int numCourses, int[][] prerequisites) {
        int[] inDegree = new int[numCourses];
        List<List<Integer>> graph = new ArrayList<>(numCourses);
        for (int i = 0; i < numCourses; ++i) {graph.add(new LinkedList<>());}
        for (int[] prerequisite: prerequisites) {
            graph.get(prerequisite[1]).add(prerequisite[0]);
            ++inDegree[prerequisite[0]];
        }

        Queue<Integer> q = new LinkedList<>();
        for (int i = 0; i < inDegree.length; ++i) {
            if (inDegree[i] == 0) {q.add(i);}
        }
        int size = 0;
        while (!q.isEmpty()) {
            int u = q.poll();
            size++;
            for (int v: graph.get(u)) {
                --inDegree[v];
                if (inDegree[v] == 0) {q.add(v);}
            }
        }
        return size == numCourses;
    }
}

相关题目

LeetCode-210. Course Schedule II [C++][Java]_贫道绝缘子的博客-优快云博客There are a total ofnumCoursescourses you have to take, labeled from0tonumCourses - 1. You are given an arrayprerequisiteswhereprerequisites[i] = [ai, bi]indicates that youmusttake coursebifirst if you want to take courseai.https://blog.youkuaiyun.com/qq_15711195/article/details/126416918?csdn_share_tail=%7B%22type%22%3A%22blog%22%2C%22rType%22%3A%22article%22%2C%22rId%22%3A%22126416918%22%2C%22source%22%3A%22qq_15711195%22%7D

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

贫道绝缘子

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值