返回介绍

solution / 2500-2599 / 2511.Maximum Enemy Forts That Can Be Captured / README

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

2511. 最多可以摧毁的敌人城堡数目

English Version

题目描述

给你一个长度为 n ,下标从 0 开始的整数数组 forts ,表示一些城堡。forts[i] 可以是 -1 ,0 或者 1 ,其中:

  • -1 表示第 i 个位置 没有 城堡。
  • 0 表示第 i 个位置有一个 敌人 的城堡。
  • 1 表示第 i 个位置有一个你控制的城堡。

现在,你需要决定,将你的军队从某个你控制的城堡位置 i 移动到一个空的位置 j ,满足:

  • 0 <= i, j <= n - 1
  • 军队经过的位置 只有 敌人的城堡。正式的,对于所有 min(i,j) < k < max(i,j) 的 k ,都满足 forts[k] == 0 。

当军队移动时,所有途中经过的敌人城堡都会被 摧毁

请你返回 最多 可以摧毁的敌人城堡数目。如果 无法 移动你的军队,或者没有你控制的城堡,请返回 0 。

 

示例 1:

输入:forts = [1,0,0,-1,0,0,0,0,1]
输出:4
解释:
- 将军队从位置 0 移动到位置 3 ,摧毁 2 个敌人城堡,位置分别在 1 和 2 。
- 将军队从位置 8 移动到位置 3 ,摧毁 4 个敌人城堡。
4 是最多可以摧毁的敌人城堡数目,所以我们返回 4 。

示例 2:

输入:forts = [0,0,1,-1]
输出:0
解释:由于无法摧毁敌人的城堡,所以返回 0 。

 

提示:

  • 1 <= forts.length <= 1000
  • -1 <= forts[i] <= 1

解法

方法一:双指针

我们用指针 $i$ 遍历数组 $forts$,指针 $j$ 从 $i$ 的下一个位置开始遍历,直到遇到第一个非 $0$ 的位置,即 $forts[j] \neq 0$。如果 $forts[i] + forts[j] = 0$,那么我们可以将军队在 $i$ 和 $j$ 之间移动,摧毁 $j - i - 1$ 个敌人城堡。我们用变量 $ans$ 记录最多可以摧毁的敌人城堡数目即可。

时间复杂度 $O(n)$,空间复杂度 $O(1)$。其中 $n$ 为数组 forts 的长度。

class Solution:
  def captureForts(self, forts: List[int]) -> int:
    n = len(forts)
    i = ans = 0
    while i < n:
      j = i + 1
      if forts[i]:
        while j < n and forts[j] == 0:
          j += 1
        if j < n and forts[i] + forts[j] == 0:
          ans = max(ans, j - i - 1)
      i = j
    return ans
class Solution {
  public int captureForts(int[] forts) {
    int n = forts.length;
    int ans = 0, i = 0;
    while (i < n) {
      int j = i + 1;
      if (forts[i] != 0) {
        while (j < n && forts[j] == 0) {
          ++j;
        }
        if (j < n && forts[i] + forts[j] == 0) {
          ans = Math.max(ans, j - i - 1);
        }
      }
      i = j;
    }
    return ans;
  }
}
class Solution {
public:
  int captureForts(vector<int>& forts) {
    int n = forts.size();
    int ans = 0, i = 0;
    while (i < n) {
      int j = i + 1;
      if (forts[i] != 0) {
        while (j < n && forts[j] == 0) {
          ++j;
        }
        if (j < n && forts[i] + forts[j] == 0) {
          ans = max(ans, j - i - 1);
        }
      }
      i = j;
    }
    return ans;
  }
};
func captureForts(forts []int) (ans int) {
  n := len(forts)
  i := 0
  for i < n {
    j := i + 1
    if forts[i] != 0 {
      for j < n && forts[j] == 0 {
        j++
      }
      if j < n && forts[i]+forts[j] == 0 {
        ans = max(ans, j-i-1)
      }
    }
    i = j
  }
  return
}
function captureForts(forts: number[]): number {
  const n = forts.length;
  let ans = 0;
  let i = 0;
  while (i < n) {
    let j = i + 1;
    if (forts[i] !== 0) {
      while (j < n && forts[j] === 0) {
        j++;
      }
      if (j < n && forts[i] + forts[j] === 0) {
        ans = Math.max(ans, j - i - 1);
      }
    }
    i = j;
  }
  return ans;
}
impl Solution {
  pub fn capture_forts(forts: Vec<i32>) -> i32 {
    let n = forts.len();
    let mut ans = 0;
    let mut i = 0;
    while i < n {
      let mut j = i + 1;
      if forts[i] != 0 {
        while j < n && forts[j] == 0 {
          j += 1;
        }
        if j < n && forts[i] + forts[j] == 0 {
          ans = ans.max(j - i - 1);
        }
      }
      i = j;
    }
    ans as i32
  }
}

方法二

impl Solution {
  pub fn capture_forts(forts: Vec<i32>) -> i32 {
    let mut ans = 0;
    let mut i = 0;

    while
      let Some((idx, &value)) = forts
        .iter()
        .enumerate()
        .skip(i)
        .find(|&(_, &x)| x != 0)
    {
      if
        let Some((jdx, _)) = forts
          .iter()
          .enumerate()
          .skip(idx + 1)
          .find(|&(_, &x)| x != 0)
      {
        if value + forts[jdx] == 0 {
          ans = ans.max(jdx - idx - 1);
        }
      }
      i = idx + 1;
    }

    ans as i32
  }
}

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

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

发布评论

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