본문 바로가기

Algorithm_BOJ(백준)/힙

[백준 11286 c++ V] 절댓값 힙

728x90
반응형

- 풀이 링크:

https://github.com/xhaktmchl/Algorithm_study/blob/main/BOJ/%EC%9E%90%EB%A3%8C%EA%B5%AC%EC%A1%B0/%ED%9E%99/%5B%EB%B0%B1%EC%A4%80%2011286%20c%2B%2B%20V%5D%20%EC%A0%88%EB%8C%93%EA%B0%92%20%ED%9E%99.cpp

 

GitHub - xhaktmchl/Algorithm_study: 알고리즘 이론 및 문제풀이

알고리즘 이론 및 문제풀이. Contribute to xhaktmchl/Algorithm_study development by creating an account on GitHub.

github.com

#include <iostream>
#include <algorithm> // fill_n, min,max, swap
//#include <map> // 중복 x 
//#include <string> // getline
//#include <cstring> // memset, strok, strstr
#include <vector>
#include <queue> // priority_queue<자료형, 구현체, 비교 연산자>
//#include <set> // 트리, 중복 x
//#include <unordered_set>
#include <cmath>
using namespace std;
/*
[백준 11286 c++ V] 절댓값 힙
문제: 
접근: 
시간복잡도: O(nlogn)
풀이1: 
    //1.입력
    //2.0이면
    //비어있으면 0출력
    //있으면 절댓값 가장 작고, 실제값 가장 작은 값 출력
    //3.0아니 정수면 푸쉬
*/
struct cmp {
    bool operator()(int a, int b) {
        if (abs(a) != abs(b)) {
            return abs(a) > abs(b);
        }
        else {
            return a > b;
        }
    }
};
int n,num;
priority_queue<int, vector<int>, cmp> pq;

int main()
{
    ios::sync_with_stdio(false); cin.tie(nullptr); cout.tie(0);
    //1.입력
    cin >> n;
    //2.0이면
    //비어있으면 0출력
    //있으면 절댓값 가장 작고, 실제값 가장 작은 값 출력
    //3.0아니 정수면 푸쉬
    for (int i = 0; i < n; i++) {
        cin >> num;
        if (num == 0) {
            if (pq.empty()) cout<<0 << '\n';
            else {
                cout << pq.top() << '\n';
                pq.pop();
            }
        }
        else pq.push(num);
    }
    return 0;
}
반응형

'Algorithm_BOJ(백준) > ' 카테고리의 다른 글

[백준 2075 c++ V] N번째 큰 수  (0) 2023.01.30