Advantage Shuffle

Given two arrays A and B of equal size, the advantage of A with respect to B is the number of indices i for which A[i] > B[i].

Return any permutation of A that maximizes its advantage with respect to B.

Example:

Input: A = [2,7,11,15], B = [1,10,4,11]
Output: [2,11,7,15]

Approach:

C++

#include <bits/stdc++.h>
using namespace std;

struct cmp
{
    bool operator()(pair<intintp1pair<intintp2)
    {
        return p1.first > p2.first;
    }
};
vector<intadvantageCount(vector<int&Avector<int&B)
{
    priority_queue<pair<intint>, vector<pair<intint>>, 
cmppq;

    for (int i = 0i < B.size(); i++)
    {
        pq.push({B[i]i});
    }
    sort(A.begin(), A.end());
    vector<intleft;
    vector<intans(A.size());
    for (int i = 0i < A.size(); i++)
    {
        if (A[i] > pq.top().first)
        {
            ans[pq.top().second] = A[i];
            pq.pop();
        }
        else
        {
            left.push_back(A[i]);
        }
    }
    int i = 0;
    while (!pq.empty())
    {
        ans[pq.top().second] = left[i++];
        pq.pop();
    }
    return ans;
}

int main()
{
    vector<intA = {271115};
    vector<intB = {110411};

    vector<intres = advantageCount(AB);

    cout << "[";
    for (int i = 0i < res.size(); i++)
    {
        cout << res[i];
        if (i != res.size() - 1)
        {
            cout << ", ";
        }
    }
    cout << "]";

    return 0;
}


No comments:

Post a Comment