초이로그

[BOJ]11286:절댓값 힙 본문

Algorithms/BOJ

[BOJ]11286:절댓값 힙

수연초이 2021. 7. 19. 14:31

코테때 못푼 PriorityQueue 문제때문에 분해서 우선순위큐 문제 조지는중이다....

아으ㅠ오분만 더 있었다묜,,,,!!

 

 

자바의 PriorityQueue 자료구조에서 Comparator를 사용하여 새로운 정렬 기준을 정의하였다.

 

** Wrapper 클래스에서 새로운 정렬 기준 만드는 법(Comparator 사용)

PriorityQueue<Integer> pq = new PriorityQueue<>(new Comparator<Integer>() {
            @Override
            public int compare(Integer o1, Integer o2) {
                if (Math.abs(o1) == Math.abs(o2))
                    return o1 - o2;
                return Math.abs(o1) - Math.abs(o2);
            }
        });

 

https://github.com/SuyeonChoi/Algorithms/blob/master/BaekJoon/Java/%ED%81%90/p11286.java

 

SuyeonChoi/Algorithms

Personal Algorithm Study::solving BOJ, Programmers, and SW Expert Academy - SuyeonChoi/Algorithms

github.com

다음부턴 절대절대절대적으로 풀어버릴 것...

 

'Algorithms > BOJ' 카테고리의 다른 글

[BOJ]17135:캐슬 디펜스  (0) 2021.10.05
[BOJ]2206:벽 부수고 이동하기  (0) 2021.09.18
[BOJ]1766:문제집  (0) 2021.07.18
[BOJ]9466:텀 프로젝트  (0) 2021.05.31
[BOJ]1937:욕심쟁이 판다  (0) 2021.04.06