포스트

[ 프로그래머스 ] 숫자 게임

문제


https://school.programmers.co.kr/learn/courses/30/lessons/12987

풀이


배열 A의 원소보다 높은 값을 배열 B에서 제시하기 위해 sort하여 비교하면 되고, 본인은 우선 순위 큐를 활용하여 풀이했다.

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
#include <string>
#include <vector>
#include <queue>

using namespace std;

int solution(vector<int> A, vector<int> B) 
{
    int answer = 0;

    priority_queue<int> a_pq;
    priority_queue<int> b_pq;

    for (int i = 0; i < A.size(); i++)
    {
        a_pq.push(A[i]);
        b_pq.push(B[i]);
    }

    while (!a_pq.empty())
    {
        if (b_pq.top() > a_pq.top())
        {
            b_pq.pop();
            a_pq.pop();
            answer++;
        }

        else
        {
            a_pq.pop();
        }
    }
    
    return answer;
}

이 기사는 저작권자의 CC BY 4.0 라이센스를 따릅니다.