789:逃脱阻碍者

This commit is contained in:
huangge1199@hotmail.com 2021-08-22 22:30:39 +08:00
parent e2c5b9ecec
commit aed899de13
5 changed files with 156 additions and 2 deletions

4
.gitignore vendored
View File

@ -1,6 +1,6 @@
/.idea/
/leet-code.iml
/src/test/
/src/main/java/leetcode/editor/cn/doc/
/target/
/src/main/java/leetcode/editor/cn/*.txt
/src/main/java/leetcode/editor/cn/*.txt
/src/main/java/leetcode/editor/cn/doc/solution/

View File

@ -0,0 +1,92 @@
//你在进行一个简化版的吃豆人游戏你从 [0, 0] 点开始出发你的目的地是 target = [xtarget, ytarget] 地图上有一些阻碍者
//以数组 ghosts 给出 i 个阻碍者从 ghosts[i] = [xi, yi] 出发所有输入均为 整数坐标
//
// 每一回合你和阻碍者们可以同时向东西北四个方向移动每次可以移动到距离原位置 1 个单位 的新位置当然也可以选择 不动 所有动作 同时 发生
//
//
// 如果你可以在任何阻碍者抓住你 之前 到达目的地阻碍者可以采取任意行动方式则被视为逃脱成功如果你和阻碍者同时到达了一个位置包括目的地都不算是逃脱
//成功
//
// 只有在你有可能成功逃脱时输出 true 否则输出 false
//
//
// 示例 1
//
//
//输入ghosts = [[1,0],[0,3]], target = [0,1]
//输出true
//解释你可以直接一步到达目的地 (0,1) (1, 0) 或者 (0, 3) 位置的阻碍者都不可能抓住你
//
//
// 示例 2
//
//
//输入ghosts = [[1,0]], target = [2,0]
//输出false
//解释你需要走到位于 (2, 0) 的目的地但是在 (1, 0) 的阻碍者位于你和目的地之间
//
//
// 示例 3
//
//
//输入ghosts = [[2,0]], target = [1,0]
//输出false
//解释阻碍者可以和你同时达到目的地
//
//
// 示例 4
//
//
//输入ghosts = [[5,0],[-10,-2],[0,-5],[-2,-2],[-7,1]], target = [7,7]
//输出false
//
//
// 示例 5
//
//
//输入ghosts = [[-1,0],[0,1],[-1,0],[0,1],[-1,0]], target = [0,0]
//输出true
//
//
//
//
// 提示
//
//
// 1 <= ghosts.length <= 100
// ghosts[i].length == 2
// -10 <= xi, yi <= 10
// 同一位置可能有 多个阻碍者
// target.length == 2
// -10 <= xtarget, ytarget <= 10
//
// Related Topics 数组 数学 👍 76 👎 0
package leetcode.editor.cn;
//789:逃脱阻碍者
class EscapeTheGhosts {
public static void main(String[] args) {
//测试代码
Solution solution = new EscapeTheGhosts().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
/**
* 789:逃脱阻碍者
*/
class Solution {
public boolean escapeGhosts(int[][] ghosts, int[] target) {
int min = Integer.MAX_VALUE;
for (int[] ghost : ghosts) {
int sum = Math.abs(ghost[0] - target[0]) + Math.abs(ghost[1] - target[1]);
min = Math.min(min, sum);
}
return Math.abs(target[0]) + Math.abs(target[1]) < min;
}
}
//leetcode submit region end(Prohibit modification and deletion)
}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,60 @@
<p>你在进行一个简化版的吃豆人游戏。你从 <code>[0, 0]</code> 点开始出发,你的目的地是 <code>target = [x<sub>target</sub>, y<sub>target</sub>]</code> 。地图上有一些阻碍者,以数组 <code>ghosts</code> 给出,第 <code>i</code> 个阻碍者从 <code>ghosts[i] = [x<sub>i</sub>, y<sub>i</sub>]</code> 出发。所有输入均为 <strong>整数坐标</strong></p>
<p>每一回合,你和阻碍者们可以同时向东,西,南,北四个方向移动,每次可以移动到距离原位置 <strong>1 个单位</strong> 的新位置。当然,也可以选择 <strong>不动</strong> 。所有动作 <strong>同时</strong> 发生。</p>
<p>如果你可以在任何阻碍者抓住你 <strong>之前</strong> 到达目的地(阻碍者可以采取任意行动方式),则被视为逃脱成功。如果你和阻碍者同时到达了一个位置(包括目的地)都不算是逃脱成功。</p>
<p>只有在你有可能成功逃脱时,输出 <code>true</code> ;否则,输出 <code>false</code></p>
 
<p><strong>示例 1</strong></p>
<pre>
<strong>输入:</strong>ghosts = [[1,0],[0,3]], target = [0,1]
<strong>输出:</strong>true
<strong>解释:</strong>你可以直接一步到达目的地 (0,1) ,在 (1, 0) 或者 (0, 3) 位置的阻碍者都不可能抓住你。
</pre>
<p><strong>示例 2</strong></p>
<pre>
<strong>输入:</strong>ghosts = [[1,0]], target = [2,0]
<strong>输出:</strong>false
<strong>解释:</strong>你需要走到位于 (2, 0) 的目的地,但是在 (1, 0) 的阻碍者位于你和目的地之间。
</pre>
<p><strong>示例 3</strong></p>
<pre>
<strong>输入:</strong>ghosts = [[2,0]], target = [1,0]
<strong>输出:</strong>false
<strong>解释:</strong>阻碍者可以和你同时达到目的地。
</pre>
<p><strong>示例 4</strong></p>
<pre>
<strong>输入:</strong>ghosts = [[5,0],[-10,-2],[0,-5],[-2,-2],[-7,1]], target = [7,7]
<strong>输出:</strong>false
</pre>
<p><strong>示例 5</strong></p>
<pre>
<strong>输入:</strong>ghosts = [[-1,0],[0,1],[-1,0],[0,1],[-1,0]], target = [0,0]
<strong>输出:</strong>true
</pre>
<p> </p>
<p><strong>提示:</strong></p>
<ul>
<li><code>1 <= ghosts.length <= 100</code></li>
<li><code>ghosts[i].length == 2</code></li>
<li><code>-10<sup>4</sup> <= x<sub>i</sub>, y<sub>i</sub> <= 10<sup>4</sup></code></li>
<li>同一位置可能有 <strong>多个阻碍者</strong></li>
<li><code>target.length == 2</code></li>
<li><code>-10<sup>4</sup> <= x<sub>target</sub>, y<sub>target</sub> <= 10<sup>4</sup></code></li>
</ul>
<div><div>Related Topics</div><div><li>数组</li><li>数学</li></div></div><br><div><li>👍 76</li><li>👎 0</li></div>

File diff suppressed because one or more lines are too long