forked from ndb796/python-for-coding-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
5.java
110 lines (99 loc) · 4.1 KB
/
5.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
import java.util.*;
public class Main {
public static int testCase, n, m;
// 모든 노드에 대한 진입차수는 0으로 초기화
public static int[] indegree = new int[501];
// 각 노드에 연결된 간선 정보를 담기 위한 배열 초기화
public static boolean[][] graph = new boolean[501][501];
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
testCase = sc.nextInt();
for (int tc = 0; tc < testCase; tc++) {
Arrays.fill(indegree, 0);
for (int i = 0; i < 501; i++) {
Arrays.fill(graph[i], false);
}
n = sc.nextInt();
// 작년 순위 정보 입력
ArrayList<Integer> arrayList = new ArrayList<>();
for (int i = 0; i < n; i++) {
int x = sc.nextInt();
arrayList.add(x);
}
// 방향 그래프의 간선 정보 초기화
for (int i = 0; i < n; i++) {
for (int j = i + 1; j < n; j++) {
graph[arrayList.get(i)][arrayList.get(j)] = true;
indegree[arrayList.get(j)] += 1;
}
}
// 올해 변경된 순위 정보 입력
m = sc.nextInt();
for (int i = 0; i < m; i++) {
int a = sc.nextInt();
int b = sc.nextInt();
// 간선의 방향 뒤집기
if (graph[a][b]) {
graph[a][b] = false;
graph[b][a] = true;
indegree[a] += 1;
indegree[b] -= 1;
}
else {
graph[a][b] = true;
graph[b][a] = false;
indegree[a] -= 1;
indegree[b] += 1;
}
}
// 위상 정렬(Topology Sort) 시작
ArrayList<Integer> result = new ArrayList<>(); // 알고리즘 수행 결과를 담을 리스트
Queue<Integer> q = new LinkedList<>(); // 큐 라이브러리 사용
// 처음 시작할 때는 진입차수가 0인 노드를 큐에 삽입
for (int i = 1; i <= arrayList.size(); i++) {
if (indegree[i] == 0) {
q.offer(i);
}
}
boolean certain = true; // 위상 정렬 결과가 오직 하나인지의 여부
boolean cycle = false; // 그래프 내 사이클이 존재하는지 여부
// 정확히 노드의 개수만큼 반복
for (int i = 0; i < n; i++) {
// 큐가 비어 있다면 사이클이 발생했다는 의미
if (q.size() == 0) {
cycle = true;
break;
}
// 큐의 원소가 2개 이상이라면 가능한 정렬 결과가 여러 개라는 의미
if (q.size() >= 2) {
certain = false;
break;
}
// 큐에서 원소 꺼내기
int now = q.poll();
result.add(now);
// 해당 원소와 연결된 노드들의 진입차수에서 1 빼기
for (int j = 1; j <= n; j++) {
if (graph[now][j]) {
indegree[j] -= 1;
// 새롭게 진입차수가 0이 되는 노드를 큐에 삽입
if (indegree[j] == 0) {
q.offer(j);
}
}
}
}
// 사이클이 발생하는 경우(일관성이 없는 경우)
if (cycle) System.out.println("IMPOSSIBLE");
// 위상 정렬 결과가 여러 개인 경우
else if (!certain) System.out.println("?");
// 위상 정렬을 수행한 결과 출력
else {
for (int i = 0; i < result.size(); i++) {
System.out.print(result.get(i) + " ");
}
System.out.println();
}
}
}
}