250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 자바 코테
- 완탐
- 코테
- 볼륨 만들기
- 주사위굴리기2
- 완전탐색
- 삼성역테
- D드라이브생성
- 정보처리기사
- 중복조합
- BFS
- 중복순열
- 자바
- 파티션 크기 조정
- Bfs와DFS
- 전화번호속의암호
- 재귀함수
- N과M
- 알고리즘
- 백준
- 백준15652
- 순열
- 에라토스테네스의채
- 코테준비
- 백준13458
- 백준2251
- 23288
- java
- 알고리즘개념
- 정올 1620
Archives
- Today
- Total
뚱땅뚱땅
[문제] 백준 11279번 최대 힙, 1927번 최소 힙 본문
728x90
풀이
public class BOJ_11279 {
public static void main(String[] args) throws NumberFormatException, IOException {
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
StringBuilder sb = new StringBuilder();
int N = Integer.parseInt(in.readLine());
PriorityQueue<Integer> heap = new PriorityQueue<>(N, new Comparator<Integer>() {
public int compare(Integer i1, Integer i2) {
return i2.compareTo(i1);
}
});
for(int i=0;i<N;i++) {
int num = Integer.parseInt(in.readLine());
if(num == 0) {
if(heap.size() == 0) {
sb.append("0").append("\n");
}else {
sb.append(heap.poll()).append("\n");
}
}else {
heap.add(num);
}
}
System.out.println(sb);
}
}
풀이
public class BOJ_1927 {
public static void main(String[] args) throws NumberFormatException, IOException {
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
StringBuilder sb = new StringBuilder();
int N = Integer.parseInt(in.readLine());
PriorityQueue<Integer> heap = new PriorityQueue<>();
for(int i=0;i<N;i++) {
int num = Integer.parseInt(in.readLine());
if(num == 0) {
if(heap.size() == 0) {
sb.append("0").append("\n");
}else {
sb.append(heap.poll()).append("\n");
}
}else {
heap.add(num);
}
}
System.out.println(sb);
}
}
728x90
'알고리즘 > 백준' 카테고리의 다른 글
[문제] 백준 2491번 수열 (0) | 2021.02.18 |
---|---|
[문제] 백준 15686번 치킨 배달 (0) | 2021.02.17 |
[문제] 백준 1476번 날짜 계산 (0) | 2021.02.16 |
[문제] 백준 10972번 다음 순열 (0) | 2021.02.16 |
[문제] 백준 9613번 GCD합 (0) | 2021.02.16 |
Comments