반응형

문제 링크: https://www.acmicpc.net/problem/2252

 

2252번: 줄 세우기

첫째 줄에 N(1≤N≤32,000), M(1≤M≤100,000)이 주어진다. M은 키를 비교한 회수이다. 다음 M개의 줄에는 키를 비교한 두 학생의 번호 A, B가 주어진다. 이는 학생 A가 학생 B의 앞에 서야 한다는 의미이다. 학생들의 번호는 1번부터 N번이다.

www.acmicpc.net

<문제 풀이> 그래프, 위상 정렬

위상 정렬 알고리즘을 그대로 적용하면 되는 문제입니다.

 

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
 

 

반응형

+ Recent posts