首页 > 其他 > 详细

LeetCode 908 Smallest Range I 解题报告

时间:2019-02-03 10:15:54      阅读:117      评论:0      收藏:0      [点我收藏+]

题目要求

Given an array A of integers, for each integer A[i] we may choose any x with -K <= x <= K, and add x to A[i].

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.

题目分析及思路

题目给出了一个整数数组A,要在[-K,K]区间内任意取一个数加到A[i]从而得到数组B;要求返回B中最大值和最小值差值的最小值。可以先对A从小到大排序,若最大值和最小值的差值比2K小,则一律返回0,否则则返回差值-2K。

python代码?

class Solution:

    def smallestRangeI(self, A, K):

        """

        :type A: List[int]

        :type K: int

        :rtype: int

        """

        A.sort()

        if A[-1] - A[0] >= 2 * K:

            return A[-1] - A[0] - 2 * K

        else:

            return 0

        

 

LeetCode 908 Smallest Range I 解题报告

原文:https://www.cnblogs.com/yao1996/p/10349665.html

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