mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-10 18:48:13 +08:00
49 lines
2.1 KiB
HTML
49 lines
2.1 KiB
HTML
<p>给你一个下标从 <strong>0</strong> 开始的整数数组 <code>nums</code> 和一个 <strong>非负</strong> 整数 <code>k</code> 。</p>
|
||
|
||
<p>在一步操作中,你可以执行下述指令:</p>
|
||
|
||
<ul>
|
||
<li>在范围 <code>[0, nums.length - 1]</code> 中选择一个 <strong>此前没有选过</strong> 的下标 <code>i</code> 。</li>
|
||
<li>将 <code>nums[i]</code> 替换为范围 <code>[nums[i] - k, nums[i] + k]</code> 内的任一整数。</li>
|
||
</ul>
|
||
|
||
<p>数组的 <strong>美丽值</strong> 定义为数组中由相等元素组成的最长子序列的长度。</p>
|
||
|
||
<p>对数组 <code>nums</code> 执行上述操作任意次后,返回数组可能取得的 <strong>最大</strong> 美丽值。</p>
|
||
|
||
<p><strong>注意:</strong>你 <strong>只</strong> 能对每个下标执行 <strong>一次</strong> 此操作。</p>
|
||
|
||
<p>数组的 <strong>子序列</strong> 定义是:经由原数组删除一些元素(也可能不删除)得到的一个新数组,且在此过程中剩余元素的顺序不发生改变。</p>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>示例 1:</strong></p>
|
||
|
||
<pre>
|
||
<strong>输入:</strong>nums = [4,6,1,2], k = 2
|
||
<strong>输出:</strong>3
|
||
<strong>解释:</strong>在这个示例中,我们执行下述操作:
|
||
- 选择下标 1 ,将其替换为 4(从范围 [4,8] 中选出),此时 nums = [4,4,1,2] 。
|
||
- 选择下标 3 ,将其替换为 4(从范围 [0,4] 中选出),此时 nums = [4,4,1,4] 。
|
||
执行上述操作后,数组的美丽值是 3(子序列由下标 0 、1 、3 对应的元素组成)。
|
||
可以证明 3 是我们可以得到的由相等元素组成的最长子序列长度。
|
||
</pre>
|
||
|
||
<p><strong>示例 2:</strong></p>
|
||
|
||
<pre>
|
||
<strong>输入:</strong>nums = [1,1,1,1], k = 10
|
||
<strong>输出:</strong>4
|
||
<strong>解释:</strong>在这个示例中,我们无需执行任何操作。
|
||
数组 nums 的美丽值是 4(整个数组)。
|
||
</pre>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>提示:</strong></p>
|
||
|
||
<ul>
|
||
<li><code>1 <= nums.length <= 10<sup>5</sup></code></li>
|
||
<li><code>0 <= nums[i], k <= 10<sup>5</sup></code></li>
|
||
</ul>
|