-
Notifications
You must be signed in to change notification settings - Fork 843
/
9.java
77 lines (65 loc) · 2.61 KB
/
9.java
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
import java.util.*;
public class Main {
// 노드의 개수(V)
public static int v;
// 모든 노드에 대한 진입차수는 0으로 초기화
public static int[] indegree = new int[501];
// 각 노드에 연결된 간선 정보를 담기 위한 연결 리스트 초기화
public static ArrayList<ArrayList<Integer>> graph = new ArrayList<ArrayList<Integer>>();
// 각 강의 시간을 0으로 초기화
public static int[] times = new int[501];
// 위상 정렬 함수
public static void topologySort() {
int[] result = new int[501]; // 알고리즘 수행 결과를 담을 배열
for (int i = 1; i <= v; i++) {
result[i] = times[i];
}
Queue<Integer> q = new LinkedList<>(); // 큐 라이브러리 사용
// 처음 시작할 때는 진입차수가 0인 노드를 큐에 삽입
for (int i = 1; i <= v; i++) {
if (indegree[i] == 0) {
q.offer(i);
}
}
// 큐가 빌 때까지 반복
while (!q.isEmpty()) {
// 큐에서 원소 꺼내기
int now = q.poll();
// 해당 원소와 연결된 노드들의 진입차수에서 1 빼기
for (int i = 0; i < graph.get(now).size(); i++) {
result[graph.get(now).get(i)] = Math.max(result[graph.get(now).get(i)], result[now] + times[graph.get(now).get(i)]);
indegree[graph.get(now).get(i)] -= 1;
// 새롭게 진입차수가 0이 되는 노드를 큐에 삽입
if (indegree[graph.get(now).get(i)] == 0) {
q.offer(graph.get(now).get(i));
}
}
}
// 위상 정렬을 수행한 결과 출력
for (int i = 1; i <= v; i++) {
System.out.println(result[i]);
}
}
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
v = sc.nextInt();
// 그래프 초기화
for (int i = 0; i <= v; i++) {
graph.add(new ArrayList<Integer>());
}
// 방향 그래프의 모든 간선 정보를 입력받기
for (int i = 1; i <= v; i++) {
// 첫 번째 수는 시간 정보를 담고 있음
int x = sc.nextInt();
times[i] = x;
// 해당 강의를 듣기 위해 먼저 들어야 하는 강의들의 번호 입력
while (true) {
x = sc.nextInt();
if (x == -1) break;
indegree[i] += 1;
graph.get(x).add(i);
}
}
topologySort();
}
}