반응형
문제 링크: https://www.acmicpc.net/problem/2252
<문제 풀이> 그래프, 위상 정렬
위상 정렬 알고리즘을 그대로 적용하면 되는 문제입니다.
1. indegree가 0인 정점을 모두 큐에 넣는다.
2. 큐가 빌 때까지 다음을 반복한다.
3. 큐에서 정점을 하나 꺼낸다.
4. 꺼낸 정점을 결과 리스트에 넣고 정점의 인접 리스트를 확인한다.
5. 꺼낸 정점과 연결된 다른 정점의 indegree을 1 감소시킨다.
5. 만약 연결된 정점의 indegree를 1 감소시켰을 때 indegree가 0이 되면 그 정점을 큐에 넣는다.
<C++ 소스 코드>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
#include <iostream>
#include <algorithm>
#include <queue>
#include <vector>
using namespace std;
int indegree[32001];
vector<int> adj[32001];
vector<int> res;
int n, m;
void solve() {
queue<int> q;
for (int i = 1; i <= n; i++) if (!indegree[i]) q.push(i);
while (!q.empty()) {
int cur = q.front();
q.pop();
res.push_back(cur);
for (auto& next : adj[cur]) {
indegree[next]--;
if (!indegree[next])q.push(next);
}
}
}
int main(void) {
ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);
cin >> n >> m;
for (int i = 0; i < m; i++) {
int a, b;
cin >> a >> b;
adj[a].push_back(b);
indegree[b]++;
}
solve();
for (auto& e : res) {
cout << e << " ";
}
return 0;
}
|
cs |
반응형
'알고리즘 문제풀이 > 백준' 카테고리의 다른 글
[백준 10974번] 모든 순열 (0) | 2020.07.05 |
---|---|
[백준 2623번] 음악프로그램 (0) | 2020.04.11 |
[백준 2250번] 트리의 높이와 너비 (0) | 2020.03.30 |
[백준 11725번] 트리의 부모 찾기 (0) | 2020.03.26 |
[백준 1043번] 거짓말 (0) | 2020.03.25 |