[亚麻社招OA]Two Sum Closest(APP前后端内存版)
Posted liuliu5151
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[亚麻社招OA]Two Sum Closest(APP前后端内存版)相关的知识,希望对你有一定的参考价值。
Input:
List of foregroundApp
List of backgroundApp
int capacity
Example:
Input :
capacity = 52
foregroundApp = [ [1, 4], [2, 43], [3, 54], [4, 67] ] (备注:第一个是ID, 第二个是需要用到的内存)
backgroundApp = [ [1, 10], [2, 22], [3, 55], [4, 99] ] (备注:第一个是ID, 第二个是需要用到的内存)
Output:
[[2,1]]
注意:
有的会要求返回一个合法解; 有的会要求返回所可能解。注意读题
以上是关于[亚麻社招OA]Two Sum Closest(APP前后端内存版)的主要内容,如果未能解决你的问题,请参考以下文章
[亚麻社招OA]Reorder Prime and Non-Prime