forked from onlybooks/java-algorithm-interview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
P85_1.java
31 lines (27 loc) · 1.11 KB
/
P85_1.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
package ch21;
import java.util.ArrayList;
import java.util.List;
import java.util.PriorityQueue;
import java.util.Queue;
public class P85_1 {
public int[][] reconstructQueue(int[][] people) {
// 우선순위 큐 선언, 정렬 기준은 큰 키 우선, 값이 같다면 앞에 줄 서 있는 사람이 작은 순으로
Queue<int[]> pq = new PriorityQueue<>(
(a, b) -> a[0] != b[0] ?
b[0] - a[0] : a[1] - b[1]
);
// 우선순위 큐에 배열 입력값 삽입
for (int[] person : people)
pq.add(person);
List<int[]> result = new ArrayList<>();
// 우선순위 큐에서 모두 추출할 때까지 반복
while (!pq.isEmpty()) {
// 큰 키 우선, 앞에 줄 서 있는 사람이 작은 순으로 추출
int[] person = pq.poll();
// 앞에 줄 서 있는 사람을 인덱스로 정해서 삽입
result.add(person[1], person);
}
// 최종 결과 자료형에 맞게 변환하여 리턴
return result.toArray(new int[people.length][2]);
}
}