백준_11286 절댓값 힙 (우선순위 큐&힙)Algorithm/Algorithm 문제2024. 1. 10. 19:57
Table of Contents
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Comparator;
import java.util.PriorityQueue;
public class BJ_11286 {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringBuilder sb = new StringBuilder();
int n = Integer.parseInt(br.readLine());
int i;
long inputNum;
PriorityQueue<Long> priorityQueue = new PriorityQueue<>(new Comparator<Long>() {
@Override
public int compare(Long o1, Long o2) { //반환값이 음수이면 o1이 앞으로, 양수이면 뒤로
if(Math.abs(o1) > Math.abs(o2)) {
return 1;
} else if(Math.abs(o1) < Math.abs(o2)) {
return -1;
} else {
return (int) (o1 - o2);
/*
if(o1 > o2) {
return 1;
} else if(o1 < o2) {
return -1;
} else {
return 0;
}*/
}
}
});
for(i=0; i<n; i++) {
inputNum = Long.parseLong(br.readLine());
if(inputNum == 0 && !priorityQueue.isEmpty()) {
sb.append(priorityQueue.poll()).append('\n');
} else if (inputNum==0) {
sb.append(0).append('\n');
} else {
priorityQueue.add(inputNum);
}
}
System.out.println(sb);
}
}
'Algorithm > Algorithm 문제' 카테고리의 다른 글
백준_1377 버블 소트 (버블정렬) (0) | 2024.01.12 |
---|---|
백준_2750 수 정렬하기 (버블정렬) (0) | 2024.01.11 |
백준_2164 카드2 (큐) (0) | 2024.01.10 |
백준_17298 오큰수 구하기 (스택) (0) | 2024.01.09 |
백준_1874 스택 수열 (스택) (0) | 2024.01.08 |
@kjyyjk :: 녕의 학습 기록
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!