일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 그리디
- java
- dfs
- Re
- Set
- programmers
- 백준
- python
- 정렬
- 다익스트라
- 프로그래머스
- 수학
- 동적 계획법
- Zip
- divmod
- 카카오
- 위클리 챌린지
- 정규식
- 파이썬
- 이분탐색
- DateTime
- BFS
- 자바
- heapq
- Combinations
- KAKAO BLIND RECRUITMENT
- 추석맞이 코딩챌린지
- lambda
- backjoon
- 재귀함수
Archives
- Today
- Total
상상쓰
[프로그래머스] 프린터 본문
https://programmers.co.kr/learn/courses/30/lessons/42587
PriorityQueue 를 이용하여 중요도가 높은 순으로 인쇄(poll) 해준다. 대기목록에 우선순위가 가장 큰 값을 아래와 같이 for 를 통하여 차례대로 비교하면 중요도가 같은 문서에 대해서도 조건에 알맞게 답을 구할 수 있다.
import java.util.*;
class Solution {
public int solution(int[] priorities, int location) {
int answer = 1;
PriorityQueue<Integer> queue = new PriorityQueue<>(Comparator.reverseOrder());
for (int i=0;i<priorities.length;i++) {
queue.add(priorities[i]);
}
while (queue.size() != 0) {
for (int i=0;i<priorities.length;i++) {
if (priorities[i] == queue.peek()) {
if (i == location) {
return answer;
} else {
queue.poll();
answer++;
}
}
}
}
return answer;
}
}
'Coding Test' 카테고리의 다른 글
[프로그래머스] 베스트앨범 (0) | 2021.07.29 |
---|---|
[프로그래머스] 카펫 (0) | 2021.07.28 |
[프로그래머스] 타겟 넘버 (0) | 2021.07.26 |
[프로그래머스] 네트워크 (0) | 2021.07.26 |
[백준] 스택 (0) | 2021.07.23 |
Comments