首页 > 其他 > 详细

[LeetCode] Advantage Shuffle 优势洗牌

时间:2019-04-23 23:04:09      阅读:218      评论:0      收藏:0      [点我收藏+]



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



参考资料:

https://leetcode.com/problems/advantage-shuffle/



LeetCode All in One 题目讲解汇总(持续更新中...)

[LeetCode] Advantage Shuffle 优势洗牌

原文:https://www.cnblogs.com/grandyang/p/10759525.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!