最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會(huì)員登陸 & 注冊

LeetCode 2101. Detonate the Maximum Bombs

2023-05-07 09:53 作者:您是打尖兒還是住店呢  | 我要投稿

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

  • 這里面就是每次去dfs的時(shí)候,都要用一個(gè)新的visited數(shù)組去存儲(chǔ),

  • 還有就是默認(rèn)的boolean數(shù)組應(yīng)該都是true的,這個(gè)有點(diǎn)奇怪了。。

  • 下面是參照大佬寫的代碼:








LeetCode 2101. Detonate the Maximum Bombs的評論 (共 條)

分享到微博請遵守國家法律
玉溪市| 阳春市| 高陵县| 玉树县| 兴隆县| 车致| 淮阳县| 阜阳市| 丹棱县| 开远市| 高青县| 友谊县| 新丰县| 天峻县| 大英县| 吉安市| 无极县| 新昌县| 惠州市| 北宁市| 石景山区| 镇雄县| 屯昌县| 玉屏| 安西县| 冕宁县| 神农架林区| 太湖县| 宁安市| 柳河县| 姚安县| 盘山县| 渑池县| 磴口县| 石屏县| 天祝| 湖口县| 黎城县| 黄平县| 扶余县| 巫山县|