1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-10 18:48:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/删除一次得到子数组最大和 [maximum-subarray-sum-with-one-deletion].html
2022-03-29 12:43:11 +08:00

40 lines
1.5 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<p>给你一个整数数组,返回它的某个&nbsp;<strong>非空</strong> 子数组(连续元素)在执行一次可选的删除操作后,所能得到的最大元素总和。换句话说,你可以从原数组中选出一个子数组,并可以决定要不要从中删除一个元素(只能删一次哦),(删除后)子数组中至少应当有一个元素,然后该子数组(剩下)的元素总和是所有子数组之中最大的。</p>
<p>注意,删除一个元素后,子数组 <strong>不能为空</strong></p>
<p>&nbsp;</p>
<p><strong>示例 1</strong></p>
<pre>
<strong>输入:</strong>arr = [1,-2,0,3]
<strong>输出:</strong>4
<strong>解释:</strong>我们可以选出 [1, -2, 0, 3],然后删掉 -2这样得到 [1, 0, 3],和最大。</pre>
<p><strong>示例 2</strong></p>
<pre>
<strong>输入:</strong>arr = [1,-2,-2,3]
<strong>输出:</strong>3
<strong>解释:</strong>我们直接选出 [3],这就是最大和。
</pre>
<p><strong>示例 3</strong></p>
<pre>
<strong>输入:</strong>arr = [-1,-1,-1,-1]
<strong>输出:</strong>-1
<strong>解释:</strong>最后得到的子数组不能为空,所以我们不能选择 [-1] 并从中删去 -1 来得到 0。
我们应该直接选择 [-1],或者选择 [-1, -1] 再从中删去一个 -1。
</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<meta charset="UTF-8" />
<ul>
<li><code>1 &lt;= arr.length &lt;= 10<sup>5</sup></code></li>
<li><code>-10<sup>4</sup>&nbsp;&lt;= arr[i] &lt;= 10<sup>4</sup></code></li>
</ul>