leetcode練習 Course Schedule II

之前做了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, 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].

Note:
The input prerequisites is a graph represented by a list of edges, not adjacency matrices. Read more about how a graph is represented.
You may assume that there are no duplicate edges in the input prerequisites.

再上個代碼

class Solution {
public:
    vector<int> findOrder(int numCourses, vector<pair<int, int>>& prerequisites) {
        int grap[numCourses]={0};
      vector<int> order;
      for (int i=0;i<prerequisites.size();i++)
          grap[prerequisites[i].first]++;
      for (int j=numCourses-1;j>=0;--j)
      {
          int del=-1;
         for (int k=0;k<numCourses;k++)
         {
             if (grap[k]==0)
             {
                 del=k;
                 grap[k]=-1;
                 order.push_back(k);
                 break;
             }
         }
         if(del==-1)
         {
             order.clear();
             return order;
         }
         for (int i=0;i<prerequisites.size();i++)
         {
             if (prerequisites[i].second==del)
                 grap[prerequisites[i].first]--;
         }
     }
     return order;
    }
};
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章