Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <queue>
- #include <cstring>
- #include <stack>
- using namespace std;
- typedef long long ll;
- int n, m;
- vector<int> graph[1005];
- bool visited[1005];
- stack<int> st;
- void dfs(int node) {
- visited[node] = true;
- for(int i = 0; i < graph[node].size(); i++) {
- int sosed = graph[node][i];
- if(!visited[sosed]) {
- dfs(sosed);
- }
- }
- st.push(node);
- }
- int main() {
- ios_base::sync_with_stdio(false);
- cin >> n >> m;
- for(int i = 0; i < m; i++) {
- int a, b;
- cin >> a >> b;
- graph[a].push_back(b);
- }
- memset(visited, false, sizeof visited);
- for(int i = 0; i < n; i++) {
- if(!visited[i]) {
- dfs(i);
- }
- }
- while(!st.empty()) {
- cout << st.top() << " " ;
- st.pop();
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement