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 | 31 |
Tags
- docker-compose
- ZuulFilter
- Logback
- 구현
- Gradle
- 이분 탐색
- BFS
- 스택
- 유레카
- Java
- 게이트웨이
- 구간 트리
- 메모이제이션
- 비트마스킹
- dp
- 달팽이
- 다익스트라
- 스프링 시큐리티
- Spring Cloud Config
- 주울
- spring cloud
- 이분 매칭
- 도커
- Zuul
- 플로이드 와샬
- 서비스 디스커버리
- 트리
- spring boot
- 백트래킹
- 완전 탐색
Archives
- Today
- Total
Hello, Freakin world!
[백준 11286번][Java] 절댓값 힙 - 힙 구현하기[응용편] 본문
물론 언어에서 제공하는 우선순위 큐를 이용할 수도 있겠지만... 그닥 재미는 없어보인다.
구현 방식에 특별하게 추가하는 건 없다. 기존의 전형적인 힙 구현 코드에 요소가 같을 경우 작은 수를 반환한다는 조건을 추가하면 된다. (그럼에도 불구하고 8번 틀렸다 ㅋㅋㅋㅋㅋ. >= 와 > 차이로 인한 차이였는데 왠만한 테스트케이스가 다 맞게 나와서 더 애를 먹었다. 테스트 케이스 찾기는 포기하고 시간이 지나고 코드를 살펴보다가 알아챘다. 그렇다. 잠깐의 휴식이 보약이었다. )
import java.io.*;
import java.util.ArrayList;
import java.util.List;
import static java.lang.Math.abs;
/*
절댓값 힙
https://www.acmicpc.net/problem/11286
*/
public class Main {
static int n;
static List<Long> heap = new ArrayList<>();
public static void main(String[] args) throws IOException {
// InputReader reader = new InputReader("testcase.txt");
InputReader reader = new InputReader();
n = reader.readInt();
StringBuilder sb = new StringBuilder();
for (int i = 0; i < n; i++) {
long x = reader.readLong();
if(x == 0) {
sb.append(poll()+"\n");
}else {
add(x);
}
}
if(sb.length() == 0) return;
sb.deleteCharAt(sb.length()-1);
System.out.println(sb.toString());
}
private static long poll() {
if(heap.size() == 0) return 0;
if(heap.size() == 1) return heap.remove(0);
long rootVal = heap.get(0);
long lastVal = heap.remove(heap.size()-1);
heap.set(0, lastVal);
int current = 0;
while(true) {
int left = current*2+1;
int right = current*2+2;
//current가 리프노드일 경우 종료
if(left >= heap.size()) break;
long currentAbsVal = abs(heap.get(current));
long leftAbsVal = abs(heap.get(left));
int nextCurrent = current;
if(currentAbsVal >= leftAbsVal) {
if (currentAbsVal == leftAbsVal) {
if(heap.get(current) > heap.get(left)) nextCurrent = left;
}else {
nextCurrent = left;
}
}
if(right < heap.size() && abs(heap.get(right)) <= currentAbsVal
&& abs(heap.get(right)) <= leftAbsVal) {
if(abs(heap.get(right)) == leftAbsVal) {
if(heap.get(right) < heap.get(left)) nextCurrent = right;
}else {
nextCurrent = right;
}
}
if(nextCurrent == current) break;
swap(nextCurrent, current);
current = nextCurrent;
}
// System.out.println("pop : " + heap);
return rootVal;
}
private static void add(long x) {
heap.add(x);
int current = heap.size()-1;
int parent = (current-1)/2;
long currentAbsVal = abs(heap.get(current));
long parentAbsVal = abs(heap.get(parent));
while(current != 0 && parentAbsVal >= currentAbsVal) {
if(parentAbsVal == currentAbsVal) {
if(heap.get(current) > heap.get(parent)) break;
}
swap(current, parent);
current = parent;
parent = (current-1)/2;
currentAbsVal = abs(heap.get(current));
parentAbsVal = abs(heap.get(parent));
}
// System.out.println(heap);
}
private static void swap(int current, int parent) {
long temp = heap.get(current);
heap.set(current, heap.get(parent));
heap.set(parent, temp);
}
}
class InputReader {
private BufferedReader br;
public InputReader() {
br = new BufferedReader(new InputStreamReader(System.in));
}
public InputReader(String filepath) {
try {
br = new BufferedReader(new FileReader(filepath));
} catch (FileNotFoundException e) {
e.printStackTrace();
}
}
public List<Character> readLineIntoCharList() throws IOException {
List<Character> l = new ArrayList<>();
while(true) {
int readVal = br.read();
if(readVal == '\n' || readVal == -1) break;
l.add((char)readVal);
}
return l;
}
public boolean ready() throws IOException {
return br.ready();
}
public String readLine() throws IOException {
return br.readLine();
}
public int readInt() throws IOException {
return Integer.parseInt(readLine());
}
public Long readLong() throws IOException {
return Long.parseLong(readLine());
}
}
'알고리즘 > PS' 카테고리의 다른 글
[백준 1389번][Java] 케빈 베이컨의 6단계 법칙 - 플로이드 와샬 (0) | 2020.10.07 |
---|---|
[백준 11403번][Java] 경로 찾기 - [모든 정점 간 최단 거리 찾기 : 플로이드 와샬] (0) | 2020.10.07 |
[백준 2512번][Java] 예산 - 이분 탐색 종결 조건 (0) | 2020.10.06 |
[백준 17827번][Java] 달팽이 리스트 - offset이 있는 모드 연산 (0) | 2020.10.06 |
[백준 2869번][Java] 달팽이는 올라가고 싶다 (0) | 2020.10.05 |
Comments