https://school.programmers.co.kr/learn/courses/30/lessons/42587
우선 순위 큐를 사용해야 하는 문제
priorities 배열을 우선 순위 큐에 넣으면 오름차순으로 정렬 되기 때문에
PriorityQueue<Integer> q = new PriorityQueue<>(Collections.reverseOrder());
이렇게 내림차순으로 정렬한다.
import java.util.*;
public class P4 {
public static void main(String[] args){
P4 p = new P4();
int[] priorities = {2, 1, 3, 2};
int location = 2;
System.out.println(p.solution(priorities,location));
}
public int solution(int[] priorities, int location) {
int answer = 0;
PriorityQueue<Integer> q = new PriorityQueue<>(Collections.reverseOrder());
for(int i=0; i<priorities.length; i++){
q.add(priorities[i]);
}
while(!q.isEmpty()){
for(int i=0; i<priorities.length; i++){
if(q.peek() == priorities[i]){
if(i == location){
answer++;
return answer;
}
q.poll();
answer++;
}
}
}
return answer;
}
}
'알고리즘 > 프로그래머스' 카테고리의 다른 글
[프로그래머스] 가장 큰 수_자바 (0) | 2022.12.01 |
---|---|
[프로그래머스] 이중우선순위큐_자바 (0) | 2022.12.01 |
[프로그래머스] 위장_자바 (0) | 2022.11.26 |
[프로그래머스] 폰켓몬_자바 (0) | 2022.11.25 |
[프로그래머스]연습문제>제일 작은 수 제거하기 Java (0) | 2021.06.30 |