leetcode Smallest Range II

231 篇文章 0 订阅

Given an array A of integers, for each integer A[i] we need to choose either x = -K or x = K, and add x to A[i] (only once).

After this process, we have some array B.

Return the smallest possible difference between the maximum value of B and the minimum value of B.

Example 1:

Input: A = [1], K = 0
Output: 0
Explanation: B = [1]
Example 2:

Input: A = [0,10], K = 2
Output: 6
Explanation: B = [2,8]
Example 3:

Input: A = [1,3,6], K = 3
Output: 3
Explanation: B = [4,6,3]

Note:

1 <= A.length <= 10000
0 <= A[i] <= 10000
0 <= K <= 10000


Solution:
A[0]-K,A[0]+K

A[i]-K,A[i]+K
A[i+1]-K,A[i+1]+K

A[len-1]-K,A[len-1]+K

A[0]-K and A[len-1]+K won’t have effects in the final range. The final lower bound will be one of (A[0]+K, A[i]-K, A[i+1]-K) and the final upper bound will be one of (A[i]+K, A[i+1]+K, A[len-1]-K). But for different timestamp, the combination is different.
i=0, lower bound: (A[0]+K, A[1]-K) upper bound:(A[0]+K, A[len-1]-K)
i=1, lower bound: (A[0]+K, A[2]-K) upper bound:(A[1]+K, A[len-1]-K)

i=len-2, lower bound: (A[0]+K, A[len-1]-K) upper bound:(A[len-2]+K, A[len-1]-K)

So the code is:

class Solution:
    def smallestRangeII(self, A, K):
        la = len(A)
        if (la == 0):
            return 0
        A.sort()
        res = A[la-1]-A[0]
        for i in range(la-1):
            mi = min(A[0]+K,A[i+1]-K)
            ma = max(A[la-1]-K, A[i]+K)
            res = min(ma-mi, res)
        return res

Typical wrong idea is finding a median. We should come up with a bad case quickly and think towards the right way.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值