-
Notifications
You must be signed in to change notification settings - Fork 24
/
P85_2.kt
30 lines (26 loc) · 1.05 KB
/
P85_2.kt
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
package ch21
import java.util.*
class P85_2 {
fun reconstructQueue(people: Array<IntArray>): Array<IntArray> {
// 우선순위 큐 선언, 정렬 기준은 큰 키 우선, 값이 같다면 앞에 줄 서 있는 사람이 작은 순으로
val pq: Queue<IntArray> = PriorityQueue { a: IntArray, b: IntArray ->
if (a[0] != b[0])
b[0] - a[0]
else
a[1] - b[1]
}
// 우선순위 큐에 배열 입력값 삽입
for (person in people)
pq.add(person)
val result: MutableList<IntArray> = mutableListOf()
// 우선순위 큐에서 모두 추출할 때까지 반복
while (!pq.isEmpty()) {
// 큰 키 우선, 앞에 줄 서 있는 사람이 작은 순으로 추출
val person = pq.poll()
// 앞에 줄 서 있는 사람을 인덱스로 정해서 삽입
result.add(person[1], person)
}
// 최종 결과 자료형에 맞게 변환하여 리턴
return result.toTypedArray()
}
}