zoukankan      html  css  js  c++  java
  • leetcode 910. Smallest Range II

    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
    

    题目大意:每个元素可以选择+k或者-k,使得最后最大值-最小值最小。
    思路,贪心,先排序,然后结果肯定是选个位置pos,pos之前的元素都+k之后的元素都-k,那么我们就枚举这个位置,然后进行判断,首先pos这个位置一定是把数组分成两个递增的序列,那么我们枚举4个值就可以了。代码如下:

    class Solution {
    public:
        int smallestRangeII(vector<int>& A, int K) {
            sort(A.begin(), A.end());
            int n = A.size();
            if (n == 1) return 0;
            int ans = A[n-1] - A[0];
            for (int i = 0; i < n; ++i) {
                int big = max(A[n-1]-K, A[i]+K);
                int small = min(A[0]+K, A[i+1]-K);
                ans = min(ans,big-small);
            }
            return ans;
        }
    };
    
  • 相关阅读:
    栅格系统
    jq中文档的操作及正则的应用
    jq的简单操作
    jquery基础
    DOM&BOM
    布局和js的轮播图
    js中的事件
    js的高级操作
    js对页面的一些简单的操作
    第二章 ELKstack部署及配置
  • 原文地址:https://www.cnblogs.com/pk28/p/9696276.html
Copyright © 2011-2022 走看看