众所周知,牛能和牛可乐经常收到小粉丝们送来的礼物,每个礼物有特定的价值,他俩想要尽可能按照自己所得价值来平均分配所有礼物。 那么问题来了,在最优的情况下,他俩手中得到的礼物价值和的最小差值是多少呢? p.s 礼物都很珍贵,所以不可以拆开算哦
示例1
输入
[1,2,3,4]
输出
0
说明
他俩一个人拿1,4 。另一个人拿2,3
示例2
输入
[1,3,5]
输出
1
说明
他俩一个人拿1,3.另一个人拿5
备注:
单个礼物价值不超过100,礼物个数小于100,所有礼物总价值不超过10000
加载中...
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param presentVec int整型一维数组 每个礼物的价值 * @return int整型 */ public int maxPresent (int[] presentVec) { // write code here } }
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param presentVec int整型vector 每个礼物的价值 * @return int整型 */ int maxPresent(vector
& presentVec) { // write code here } };
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param presentVec int整型一维数组 每个礼物的价值 # @return int整型 # class Solution: def maxPresent(self , presentVec ): # write code here
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param presentVec int整型一维数组 每个礼物的价值 * @return int整型 */ public int maxPresent (List
presentVec) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param presentVec int整型一维数组 每个礼物的价值 * @return int整型 */ function maxPresent( presentVec ) { // write code here } module.exports = { maxPresent : maxPresent };
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param presentVec int整型一维数组 每个礼物的价值 # @return int整型 # class Solution: def maxPresent(self , presentVec ): # write code here
package main /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param presentVec int整型一维数组 每个礼物的价值 * @return int整型 */ func maxPresent( presentVec []int ) int { // write code here }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param presentVec int整型一维数组 每个礼物的价值 * @param presentVecLen int presentVec数组长度 * @return int整型 */ int maxPresent(int* presentVec, int presentVecLen ) { // write code here }
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param presentVec int整型一维数组 每个礼物的价值 # @return int整型 # class Solution def maxPresent(presentVec) # write code here end end
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param presentVec int整型一维数组 每个礼物的价值 * @return int整型 */ def maxPresent(presentVec: Array[Int]): Int = { // write code here } }
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param presentVec int整型一维数组 每个礼物的价值 * @return int整型 */ fun maxPresent(presentVec: IntArray): Int { // write code here } }
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param presentVec int整型一维数组 每个礼物的价值 * @return int整型 */ public int maxPresent (int[] presentVec) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param presentVec int整型一维数组 每个礼物的价值 * @return int整型 */ export function maxPresent(presentVec: number[]): number { // write code here }
public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param presentVec int整型一维数组 每个礼物的价值 * @return int整型 */ func maxPresent ( _ presentVec: [Int]) -> Int { // write code here } }
struct Solution{ } impl Solution { fn new() -> Self { Solution{} } /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param presentVec int整型一维数组 每个礼物的价值 * @return int整型 */ pub fn maxPresent(&self, presentVec: Vec
) -> i32 { // write code here } }
[1,2,3,4]
0
[1,3,5]
1