870. Advantage Shuffle

Posted ruruozhenhao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了870. 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 1:

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

Example 2:

Input: A = [12,24,8,32], B = [13,25,32,11]
Output: [24,32,8,12]

 

Note:

  1. 1 <= A.length = B.length <= 10000
  2. 0 <= A[i] <= 10^9
  3. 0 <= B[i] <= 10^9

 

Approach #1: C++.

class Solution {
public:
    vector<int> advantageCount(vector<int>& A, vector<int>& B) {
        map<int, int> m;
        for (int i : A) m[i]++;
        map<int, int>::iterator it;
        vector<int> res;
        for (int i : B) {
            it = m.upper_bound(i);
            int x = it != m.end() ? it->first : m.begin()->first;
            if (--m[x] == 0) m.erase(x);
            res.push_back(x);
        }
        return res;
    }
};

  

 

以上是关于870. Advantage Shuffle的主要内容,如果未能解决你的问题,请参考以下文章

leetcode 870. Advantage Shuffle

力扣 每日一题 870. 优势洗牌难度:中等(贪心+双指针)

力扣 每日一题 870. 优势洗牌难度:中等,rating: 1648(贪心+双指针)

LeetCode 0870. 优势洗牌 - LetMeFly趣解田忌赛马:能赢则赢,否则摆烂(贪心)

Hadoop_10_shuffle02_详解Shuffle过程来源网络推荐更为详细

Advantage 数据库 ORM 工具或代码生成器工具