위상정렬이란?
- 여러 일들에 순서가 정해져 있을 때 순서에 맞게끔 나열하는 것
- 방향 그래프
- 그래프의 순환 x
예시
코드
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
47
48
49
50
51
52
53
54
55
56
57
58
|
public class Main_ {
static int N,M;
static ArrayList<ArrayList<Integer>> list = new ArrayList<ArrayList<Integer>>();
static int [] indegree;
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st;
st = new StringTokenizer(br.readLine());
N = Integer.parseInt(st.nextToken());
M = Integer.parseInt(st.nextToken());
indegree = new int[N+1];
for(int i=0;i<=N;i++) list.add(new ArrayList<>());
for(int i=0;i<M;i++) {
st = new StringTokenizer(br.readLine());
int a = Integer.parseInt(st.nextToken());
int b = Integer.parseInt(st.nextToken());
list.get(a).add(b);
indegree[b]++;
}
sort();
}
public static void sort() {
Queue<Integer> queue = new LinkedList<>();
Queue<Integer> result = new LinkedList<>();
for(int i=1;i<N+1;i++) {
if(indegree[i]==0) {
queue.add(i);
}
}
while(!queue.isEmpty()) {
int temp = queue.poll();
result.add(temp);
for(Integer item : list.get(temp)) {
indegree[item]--;
if(indegree[item]==0) {
queue.add(item);
}
}
}
while(!result.isEmpty()) {
System.out.print(result.poll()+" ");
}
}
}
|
cs |
'정리 > 자료구조+알고리즘' 카테고리의 다른 글
이진 탐색 (Binary Search) 알고리즘 (0) | 2021.07.05 |
---|---|
세그먼트 트리(Segment Tree) (0) | 2021.07.01 |
비트마스크 (BitMask) (0) | 2021.04.21 |
최소신장트리(MST) 알고리즘 (0) | 2021.03.26 |
Floyd Warshall (플로이드 와샬) 알고리즘 (0) | 2021.03.25 |