[LeetCode]Advantage Shuffle

栏目: 编程工具 · 发布时间: 6年前

内容简介:Given two arraysReturn

题目描述:

LeetCode 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 <= A.length = B.length <= 10000
0 <= A[i] <= 10^9
0 <= B[i] <= 10^9

题目大意:

给定两个等长数组A和B。求A的排列,使得满足条件A[i] > B[i]的下标最多。

解题思路:

贪心(Greedy Algorithm)

利用数组B,构造TreeMap<Integer, List<Integer>,其中keyB的元素,value为其下标(由于可能存在重复的元素,因此用列表)

遍历数组A的元素a

  B中取出大于a的最小元素对应的任意下标;若不存在大于a的元素,则取出当前B中的最大元素对应的下标,记为idx

  a放在idx

Java代码:

class Solution {
    public int[] advantageCount(int[] A, int[] B) {
        int size = A.length;
        TreeMap<Integer, LinkedList<Integer>> mapB = new TreeMap<>();
        for (int i = 0; i < size; i++) {
            LinkedList<Integer> idxList = 
                    mapB.getOrDefault(B[i], new LinkedList<>());
            idxList.add(i);
            mapB.putIfAbsent(B[i], idxList);
        }
        int[] ans = new int[size];
        for (int i = 0; i < size; i++) {
            Integer key = mapB.lowerKey(A[i]);
            if (key == null) {
                key = mapB.lastKey();
            }
            LinkedList<Integer> idxList = mapB.get(key);
            int index = idxList.removeLast();
            ans[index] = A[i];
            if (idxList.isEmpty()) {
                mapB.remove(key);
            }
        }
        return ans;
    }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

征服C指针

征服C指针

前桥和弥 / 吴雅明 / 人民邮电出版社 / 2013-2 / 49.00元

《图灵程序设计丛书:征服C指针》被称为日本最有营养的C参考书。作者是日本著名的“毒舌程序员”,其言辞犀利,观点鲜明,往往能让读者迅速领悟要领。书中结合了作者多年的编程经验和感悟,从C语言指针的概念讲起,通过实验一步一步地为我们解释了指针和数组、内存、数据结构的关系,展现了指针的常见用法,揭示了各种使用技巧。另外,还通过独特的方式教会我们怎样解读C语言那些让人“纠结”的声明语法,如何绕过C指针的陷阱......一起来看看 《征服C指针》 这本书的介绍吧!

在线进制转换器
在线进制转换器

各进制数互转换器

XML 在线格式化
XML 在线格式化

在线 XML 格式化压缩工具

HEX HSV 转换工具
HEX HSV 转换工具

HEX HSV 互换工具