[백준/BOJ] 백준 2252번 : 줄 세우기
2021. 2. 7. 19:49ㆍ알고리즘 문제풀이
위상정렬을 이용하여 문제를 해결했다.
코드
#include <iostream>
#include <algorithm>
#include <vector>
#include <utility>
#include <set>
#include <string>
#include <queue>
#include <cmath>
#include <map>
using namespace std;
int n, m;
vector<int> indegree(32001, 0);
vector<int> adj[32001];
//위상정렬을 이용
int main()
{
cin.tie(NULL);
ios_base::sync_with_stdio(false);
cin >> n >> m;
for (int i = 0; i < m; i++)
{
int a, b;
cin >> a >> b;
adj[a].push_back(b);
indegree[b]++;
}
queue<int> q;
for (int i = 1; i <= n; i++)
{
if (indegree[i] == 0)
q.push(i);
}
vector<int> result;
while (!q.empty())
{
int here = q.front();
result.push_back(here);
q.pop();
for (int i = 0; i < adj[here].size(); i++)
{
int there = adj[here][i];
indegree[there]--;
if (indegree[there] == 0)
q.push(there);
}
}
for (int i = 0; i < result.size(); i++)
cout << result[i] << " ";
return 0;
}
'알고리즘 문제풀이' 카테고리의 다른 글
[백준/BOJ] 백준 1766번 : 문제집 (0) | 2021.02.07 |
---|---|
[백준/BOJ] 백준 1516번 : 게임 개발 (0) | 2021.02.07 |
[백준/BOJ] 백준 16637번 : 괄호 추가하기 (0) | 2021.02.07 |
[백준/BOJ] 백준 1854번 : K번째 최단경로 찾기 (0) | 2021.02.06 |
[백준/BOJ] 백준 1981번 : 배열에서 이동 (0) | 2021.02.06 |