우선순위 큐를 연습하기 위해 간단한 힙 문제를 풀어보았습니다.
최소힙은 PriorityQueue로 간단하게 해결할 수 있습니다.
PriorityQueue는 가장 작은 값이 peek()으로 오기때문에
0이 아니면 그대로 add,
0이 오면 peek() 값을 출력해주시면 됩니다.
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
32
33
34
35
36
37
38
39
40
41
42
43
44
|
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.PriorityQueue;
import java.util.StringTokenizer;
public class Main {
static BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
static StringTokenizer st;
static StringBuffer sb = new StringBuffer();
static PriorityQueue<Integer> q = new PriorityQueue<>();
static int N, x;
static void solve() {
if (x == 0) {
if (q.isEmpty()) {
sb.append("0\n");
return;
}
sb.append(q.peek() + "\n");
q.remove();
return;
}
q.add(x);
}
static void input() throws Exception {
st = new StringTokenizer(br.readLine());
N = Integer.parseInt(st.nextToken());
while (N-- > 0) {
st = new StringTokenizer(br.readLine());
x = Integer.parseInt(st.nextToken());
solve();
}
}
public static void main(String[] args) throws Exception {
input();
System.out.println(sb.toString());
}
}
|
cs |
'algorithm > data-structure' 카테고리의 다른 글
boj 1655 가운데를 말해요 (0) | 2021.02.01 |
---|---|
boj 11279 최대 힙 (0) | 2021.01.31 |
boj 4889 안정적인 문자열 (0) | 2021.01.26 |
boj 2504 괄호의 값 (0) | 2021.01.26 |
boj 6198 옥상 정원 꾸미기 (0) | 2021.01.26 |