mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-10 18:48:13 +08:00
40 lines
1.8 KiB
HTML
40 lines
1.8 KiB
HTML
<p><img alt="" src="https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2020/07/19/change.png" style="height: 312px; width: 635px;"></p>
|
||
|
||
<p>Winston 构造了一个如上所示的函数 <code>func</code> 。他有一个整数数组 <code>arr</code> 和一个整数 <code>target</code> ,他想找到让 <code>|func(arr, l, r) - target|</code> 最小的 <code>l</code> 和 <code>r</code> 。</p>
|
||
|
||
<p>请你返回 <code>|func(arr, l, r) - target|</code> 的最小值。</p>
|
||
|
||
<p>请注意, <code>func</code> 的输入参数 <code>l</code> 和 <code>r</code> 需要满足 <code>0 <= l, r < arr.length</code> 。</p>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>示例 1:</strong></p>
|
||
|
||
<pre><strong>输入:</strong>arr = [9,12,3,7,15], target = 5
|
||
<strong>输出:</strong>2
|
||
<strong>解释:</strong>所有可能的 [l,r] 数对包括 [[0,0],[1,1],[2,2],[3,3],[4,4],[0,1],[1,2],[2,3],[3,4],[0,2],[1,3],[2,4],[0,3],[1,4],[0,4]], Winston 得到的相应结果为 [9,12,3,7,15,8,0,3,7,0,0,3,0,0,0] 。最接近 5 的值是 7 和 3,所以最小差值为 2 。
|
||
</pre>
|
||
|
||
<p><strong>示例 2:</strong></p>
|
||
|
||
<pre><strong>输入:</strong>arr = [1000000,1000000,1000000], target = 1
|
||
<strong>输出:</strong>999999
|
||
<strong>解释:</strong>Winston 输入函数的所有可能 [l,r] 数对得到的函数值都为 1000000 ,所以最小差值为 999999 。
|
||
</pre>
|
||
|
||
<p><strong>示例 3:</strong></p>
|
||
|
||
<pre><strong>输入:</strong>arr = [1,2,4,8,16], target = 0
|
||
<strong>输出:</strong>0
|
||
</pre>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>提示:</strong></p>
|
||
|
||
<ul>
|
||
<li><code>1 <= arr.length <= 10^5</code></li>
|
||
<li><code>1 <= arr[i] <= 10^6</code></li>
|
||
<li><code>0 <= target <= 10^7</code></li>
|
||
</ul>
|