Leetcode 1005. Maximize Sum Of Array After K Negations

231 篇文章 0 订阅
120 篇文章 1 订阅

Given an array A of integers, we must modify the array in the following way: we choose an i and replace A[i] with -A[i], and we repeat this process K times in total.  (We may choose the same index i multiple times.)

Return the largest possible sum of the array after modifying it in this way.

 

Example 1:

Input: A = [4,2,3], K = 1
Output: 5
Explanation: Choose indices (1,) and A becomes [4,-2,3].

Example 2:

Input: A = [3,-1,0,2], K = 3
Output: 6
Explanation: Choose indices (1, 2, 2) and A becomes [3,1,0,2].

Example 3:

Input: A = [2,-3,-1,5,-4], K = 2
Output: 13
Explanation: Choose indices (1, 4) and A becomes [2,3,-1,5,4].

 

Note:

  1. 1 <= A.length <= 10000
  2. 1 <= K <= 10000
  3. -100 <= A[i] <= 100

 

-----------------------------------------------------------------

非常简单,居然能wa一次,不应该啊。。。自己想一下,确保脑子里没有bug

class Solution:
    def largestSumAfterKNegations(self, A, K):
        sa = sorted(A)
        i = 0
        for i in range(K):
            if (sa[i] < 0):
                sa[i] = -sa[i]
            else:
                min_val = min(sa)
                res = sum(sa)
                delta = min_val
                for j in range(K - i):
                    res -= 2*delta
                    delta = -delta
                return res
        return sum(sa)
s = Solution()
print(s.largestSumAfterKNegations([4,2,3], 1))

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值