|
| 1 | +<p>There are several consecutive houses along a street, each of which has some money inside. There is also a robber, who wants to steal money from the homes, but he <strong>refuses to steal from adjacent homes</strong>.</p> |
| 2 | + |
| 3 | +<p>The <strong>capability</strong> of the robber is the maximum amount of money he steals from one house of all the houses he robbed.</p> |
| 4 | + |
| 5 | +<p>You are given an integer array <code>nums</code> representing how much money is stashed in each house. More formally, the <code>i<sup>th</sup></code> house from the left has <code>nums[i]</code> dollars.</p> |
| 6 | + |
| 7 | +<p>You are also given an integer <code>k</code>, representing the <strong>minimum</strong> number of houses the robber will steal from. It is always possible to steal at least <code>k</code> houses.</p> |
| 8 | + |
| 9 | +<p>Return <em>the <strong>minimum</strong> capability of the robber out of all the possible ways to steal at least </em><code>k</code><em> houses</em>.</p> |
| 10 | + |
| 11 | +<p> </p> |
| 12 | +<p><strong class="example">Example 1:</strong></p> |
| 13 | + |
| 14 | +<pre> |
| 15 | +<strong>Input:</strong> nums = [2,3,5,9], k = 2 |
| 16 | +<strong>Output:</strong> 5 |
| 17 | +<strong>Explanation:</strong> |
| 18 | +There are three ways to rob at least 2 houses: |
| 19 | +- Rob the houses at indices 0 and 2. Capability is max(nums[0], nums[2]) = 5. |
| 20 | +- Rob the houses at indices 0 and 3. Capability is max(nums[0], nums[3]) = 9. |
| 21 | +- Rob the houses at indices 1 and 3. Capability is max(nums[1], nums[3]) = 9. |
| 22 | +Therefore, we return min(5, 9, 9) = 5. |
| 23 | +</pre> |
| 24 | + |
| 25 | +<p><strong class="example">Example 2:</strong></p> |
| 26 | + |
| 27 | +<pre> |
| 28 | +<strong>Input:</strong> nums = [2,7,9,3,1], k = 2 |
| 29 | +<strong>Output:</strong> 2 |
| 30 | +<strong>Explanation:</strong> There are 7 ways to rob the houses. The way which leads to minimum capability is to rob the house at index 0 and 4. Return max(nums[0], nums[4]) = 2. |
| 31 | +</pre> |
| 32 | + |
| 33 | +<p> </p> |
| 34 | +<p><strong>Constraints:</strong></p> |
| 35 | + |
| 36 | +<ul> |
| 37 | + <li><code>1 <= nums.length <= 10<sup>5</sup></code></li> |
| 38 | + <li><code>1 <= nums[i] <= 10<sup>9</sup></code></li> |
| 39 | + <li><code>1 <= k <= (nums.length + 1)/2</code></li> |
| 40 | +</ul> |
0 commit comments