您的位置:首页 > 编程语言 > C语言/C++

LeetCode-Course Schedule-解题报告

2015-07-08 18:09 417 查看
原题链接 https://leetcode.com/problems/course-schedule/

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, is it possible for you to finish all courses?

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 it is possible.

2, [[1,0],[0,1]]

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.

其实就是拓扑排序。

我使用的dfs,当然我用一个数组保存了每个节点的入度。每次输出入度为0的节点。

class Solution {
public:
bool canFinish(int numCourses, vector<pair<int, int>>& prerequisites) {
vector<vector<int> >graph(numCourses);
vector<int>out(numCourses, 0);
int num = 0;
vector<bool>vis(numCourses, 0);
for (auto &p : prerequisites)
graph[p.second].push_back(p.first), out[p.first]++;
dfs(graph, num, vis, out);
return num == numCourses;
}
void dfs(vector<vector<int> >& g, int& num, vector<bool>& vis, vector<int>& out)
{
if (num == g.size())return;
for (int i = 0; i < g.size(); ++i)
{
if (!vis[i] && out[i] == 0)
{
num++;
vis[i] = true;
for (int j = 0; j < g[i].size(); ++j)
--out[g[i][j]];
dfs(g, num, vis, out);
}
}
}
};
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  C++ leetcode