返回介绍

solution / 2100-2199 / 2101.Detonate the Maximum Bombs / README_EN

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

2101. Detonate the Maximum Bombs

中文文档

Description

You are given a list of bombs. The range of a bomb is defined as the area where its effect can be felt. This area is in the shape of a circle with the center as the location of the bomb.

The bombs are represented by a 0-indexed 2D integer array bombs where bombs[i] = [xi, yi, ri]. xi and yi denote the X-coordinate and Y-coordinate of the location of the ith bomb, whereas ri denotes the radius of its range.

You may choose to detonate a single bomb. When a bomb is detonated, it will detonate all bombs that lie in its range. These bombs will further detonate the bombs that lie in their ranges.

Given the list of bombs, return _the maximum number of bombs that can be detonated if you are allowed to detonate only one bomb_.

 

Example 1:

Input: bombs = [[2,1,3],[6,1,4]]
Output: 2
Explanation:
The above figure shows the positions and ranges of the 2 bombs.
If we detonate the left bomb, the right bomb will not be affected.
But if we detonate the right bomb, both bombs will be detonated.
So the maximum bombs that can be detonated is max(1, 2) = 2.

Example 2:

Input: bombs = [[1,1,5],[10,10,5]]
Output: 1
Explanation:
Detonating either bomb will not detonate the other bomb, so the maximum number of bombs that can be detonated is 1.

Example 3:

Input: bombs = [[1,2,3],[2,3,1],[3,4,2],[4,5,3],[5,6,4]]
Output: 5
Explanation:
The best bomb to detonate is bomb 0 because:
- Bomb 0 detonates bombs 1 and 2. The red circle denotes the range of bomb 0.
- Bomb 2 detonates bomb 3. The blue circle denotes the range of bomb 2.
- Bomb 3 detonates bomb 4. The green circle denotes the range of bomb 3.
Thus all 5 bombs are detonated.

 

Constraints:

  • 1 <= bombs.length <= 100
  • bombs[i].length == 3
  • 1 <= xi, yi, ri <= 105

Solutions

Solution 1

class Solution:
  def maximumDetonation(self, bombs: List[List[int]]) -> int:
    def check(i, j):
      if i == j:
        return False
      x, y = bombs[i][0] - bombs[j][0], bombs[i][1] - bombs[j][1]
      r = bombs[i][2]
      return r * r >= x * x + y * y

    g = defaultdict(list)
    n = len(bombs)
    for i in range(n):
      for j in range(n):
        if check(i, j):
          g[i].append(j)
    ans = 0
    for k in range(n):
      q = deque([k])
      vis = [False] * n
      vis[k] = True
      cnt = 0
      while q:
        i = q.popleft()
        cnt += 1
        for j in g[i]:
          if not vis[j]:
            vis[j] = True
            q.append(j)
      ans = max(ans, cnt)
    return ans
class Solution {
  private int[][] bombs;

  public int maximumDetonation(int[][] bombs) {
    this.bombs = bombs;
    int n = bombs.length;
    boolean[][] g = new boolean[n][n];
    for (int i = 0; i < n; ++i) {
      for (int j = 0; j < n; ++j) {
        g[i][j] = check(i, j);
      }
    }
    int ans = 0;
    for (int k = 0; k < n; ++k) {
      Deque<Integer> q = new ArrayDeque<>();
      q.offer(k);
      boolean[] vis = new boolean[n];
      vis[k] = true;
      int cnt = 0;
      while (!q.isEmpty()) {
        int i = q.poll();
        ++cnt;
        for (int j = 0; j < n; ++j) {
          if (g[i][j] && !vis[j]) {
            vis[j] = true;
            q.offer(j);
          }
        }
      }
      ans = Math.max(ans, cnt);
    }
    return ans;
  }

  private boolean check(int i, int j) {
    if (i == j) {
      return false;
    }
    long x = bombs[i][0] - bombs[j][0];
    long y = bombs[i][1] - bombs[j][1];
    long r = bombs[i][2];
    return r * r >= x * x + y * y;
  }
}
class Solution {
public:
  int maximumDetonation(vector<vector<int>>& bombs) {
    int n = bombs.size();
    vector<vector<bool>> g(n, vector<bool>(n));
    for (int i = 0; i < n; ++i)
      for (int j = 0; j < n; ++j)
        g[i][j] = check(i, j, bombs);
    int ans = 0;
    for (int k = 0; k < n; ++k) {
      queue<int> q{{k}};
      vector<bool> vis(n);
      vis[k] = true;
      int cnt = 0;
      while (!q.empty()) {
        int i = q.front();
        q.pop();
        ++cnt;
        for (int j = 0; j < n; ++j) {
          if (g[i][j] && !vis[j]) {
            vis[j] = true;
            q.push(j);
          }
        }
      }
      ans = max(ans, cnt);
    }
    return ans;
  }

  bool check(int i, int j, vector<vector<int>>& bombs) {
    if (i == j) return false;
    long long x = bombs[i][0] - bombs[j][0];
    long long y = bombs[i][1] - bombs[j][1];
    long long r = bombs[i][2];
    return r * r >= x * x + y * y;
  }
};
func maximumDetonation(bombs [][]int) int {
  check := func(i, j int) bool {
    if i == j {
      return false
    }
    x, y := bombs[i][0]-bombs[j][0], bombs[i][1]-bombs[j][1]
    r := bombs[i][2]
    return r*r >= x*x+y*y
  }
  n := len(bombs)
  g := make([][]bool, n)
  for i := range g {
    g[i] = make([]bool, n)
    for j := range g[i] {
      g[i][j] = check(i, j)
    }
  }

  ans := 0
  for k := 0; k < n; k++ {
    q := []int{k}
    vis := make([]bool, n)
    vis[k] = true
    cnt := 0
    for len(q) > 0 {
      i := q[0]
      q = q[1:]
      cnt++
      for j := 0; j < n; j++ {
        if g[i][j] && !vis[j] {
          vis[j] = true
          q = append(q, j)
        }
      }
    }
    ans = max(ans, cnt)
  }
  return ans
}

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

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

发布评论

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