返回介绍

solution / 2500-2599 / 2560.House Robber IV / README_EN

发布于 2024-06-17 01:03:04 字数 6002 浏览 0 评论 0 收藏 0

2560. House Robber IV

中文文档

Description

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 refuses to steal from adjacent homes.

The capability of the robber is the maximum amount of money he steals from one house of all the houses he robbed.

You are given an integer array nums representing how much money is stashed in each house. More formally, the ith house from the left has nums[i] dollars.

You are also given an integer k, representing the minimum number of houses the robber will steal from. It is always possible to steal at least k houses.

Return _the minimum capability of the robber out of all the possible ways to steal at least _k_ houses_.

 

Example 1:

Input: nums = [2,3,5,9], k = 2
Output: 5
Explanation: 
There are three ways to rob at least 2 houses:
- Rob the houses at indices 0 and 2. Capability is max(nums[0], nums[2]) = 5.
- Rob the houses at indices 0 and 3. Capability is max(nums[0], nums[3]) = 9.
- Rob the houses at indices 1 and 3. Capability is max(nums[1], nums[3]) = 9.
Therefore, we return min(5, 9, 9) = 5.

Example 2:

Input: nums = [2,7,9,3,1], k = 2
Output: 2
Explanation: 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.

 

Constraints:

  • 1 <= nums.length <= 105
  • 1 <= nums[i] <= 109
  • 1 <= k <= (nums.length + 1)/2

Solutions

Solution 1: Binary Search + Greedy

The problem is asking for the minimum stealing ability of the thief. We can use binary search to enumerate the stealing ability of the thief. For the enumerated ability $x$, we can use a greedy approach to determine whether the thief can steal at least $k$ houses. Specifically, we traverse the array from left to right. For the current house $i$ we are traversing, if $nums[i] \leq x$ and the difference between the index of $i$ and the last stolen house is greater than $1$, then the thief can steal house $i$. Otherwise, the thief cannot steal house $i$. We accumulate the number of stolen houses. If the number of stolen houses is greater than or equal to $k$, it means that the thief can steal at least $k$ houses, and at this time, the stealing ability $x$ of the thief might be the minimum. Otherwise, the stealing ability $x$ of the thief is not the minimum.

The time complexity is $O(n \times \log m)$, and the space complexity is $O(1)$. Where $n$ and $m$ are the length of the array $nums$ and the maximum value in the array $nums$, respectively.

class Solution:
  def minCapability(self, nums: List[int], k: int) -> int:
    def f(x):
      cnt, j = 0, -2
      for i, v in enumerate(nums):
        if v > x or i == j + 1:
          continue
        cnt += 1
        j = i
      return cnt >= k

    return bisect_left(range(max(nums) + 1), True, key=f)
class Solution {
  public int minCapability(int[] nums, int k) {
    int left = 0, right = (int) 1e9;
    while (left < right) {
      int mid = (left + right) >> 1;
      if (f(nums, mid) >= k) {
        right = mid;
      } else {
        left = mid + 1;
      }
    }
    return left;
  }

  private int f(int[] nums, int x) {
    int cnt = 0, j = -2;
    for (int i = 0; i < nums.length; ++i) {
      if (nums[i] > x || i == j + 1) {
        continue;
      }
      ++cnt;
      j = i;
    }
    return cnt;
  }
}
class Solution {
public:
  int minCapability(vector<int>& nums, int k) {
    auto f = [&](int x) {
      int cnt = 0, j = -2;
      for (int i = 0; i < nums.size(); ++i) {
        if (nums[i] > x || i == j + 1) {
          continue;
        }
        ++cnt;
        j = i;
      }
      return cnt >= k;
    };
    int left = 0, right = *max_element(nums.begin(), nums.end());
    while (left < right) {
      int mid = (left + right) >> 1;
      if (f(mid)) {
        right = mid;
      } else {
        left = mid + 1;
      }
    }
    return left;
  }
};
func minCapability(nums []int, k int) int {
  return sort.Search(1e9+1, func(x int) bool {
    cnt, j := 0, -2
    for i, v := range nums {
      if v > x || i == j+1 {
        continue
      }
      cnt++
      j = i
    }
    return cnt >= k
  })
}
function minCapability(nums: number[], k: number): number {
  const f = (mx: number): boolean => {
    let cnt = 0;
    let j = -2;
    for (let i = 0; i < nums.length; ++i) {
      if (nums[i] <= mx && i - j > 1) {
        ++cnt;
        j = i;
      }
    }
    return cnt >= k;
  };

  let left = 1;
  let right = Math.max(...nums);
  while (left < right) {
    const mid = (left + right) >> 1;
    if (f(mid)) {
      right = mid;
    } else {
      left = mid + 1;
    }
  }
  return left;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文