[Swift]LeetCode789. 逃脱阻碍者 | Escape The Ghosts
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
➤微信公众号:山青咏芝(shanqingyongzhi)
➤博客园地址:山青咏芝(https://www.cnblogs.com/strengthen/)
➤GitHub地址:https://github.com/strengthen/LeetCode
➤原文地址: https://www.cnblogs.com/strengthen/p/10545692.html
➤如果链接不是山青咏芝的博客园地址,则可能是爬取作者的文章。
➤原文已修改更新!强烈建议点击原文地址阅读!支持作者!支持原创!
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
You are playing a simplified Pacman game. You start at the point (0, 0)
, and your destination is (target[0], target[1])
. There are several ghosts on the map, the i-th ghost starts at (ghosts[i][0], ghosts[i][1])
.
Each turn, you and all ghosts simultaneously *may* move in one of 4 cardinal directions: north, east, west, or south, going from the previous point to a new point 1 unit of distance away.
You escape if and only if you can reach the target before any ghost reaches you (for any given moves the ghosts may take.) If you reach any square (including the target) at the same time as a ghost, it doesn't count as an escape.
Return True if and only if it is possible to escape.
Example 1: Input: ghosts = [[1, 0], [0, 3]] target = [0, 1] Output: true Explanation: You can directly reach the destination (0, 1) at time 1, while the ghosts located at (1, 0) or (0, 3) have no way to catch up with you.
Example 2: Input: ghosts = [[1, 0]] target = [2, 0] Output: false Explanation: You need to reach the destination (2, 0), but the ghost at (1, 0) lies between you and the destination.
Example 3: Input: ghosts = [[2, 0]] target = [1, 0] Output: false Explanation: The ghost can reach the target at the same time as you.
Note:
- All points have coordinates with absolute value <=
10000
. - The number of ghosts will not exceed
100
.
你在进行一个简化版的吃豆人游戏。你从 (0, 0)
点开始出发,你的目的地是 (target[0], target[1])
。地图上有一些阻碍者,第 i 个阻碍者从 (ghosts[i][0], ghosts[i][1])
出发。
每一回合,你和阻碍者们*可以*同时向东,西,南,北四个方向移动,每次可以移动到距离原位置1个单位的新位置。
如果你可以在任何阻碍者抓住你之前到达目的地(阻碍者可以采取任意行动方式),则被视为逃脱成功。如果你和阻碍者同时到达了一个位置(包括目的地)都不算是逃脱成功。
当且仅当你有可能成功逃脱时,输出 True。
示例 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 解释: 阻碍者可以和你同时达到目的地。
说明:
- 所有的点的坐标值的绝对值 <=
10000
。 - 阻碍者的数量不会超过
100
。
1 class Solution { 2 func escapeGhosts(_ ghosts: [[Int]], _ target: [Int]) -> Bool { 3 var dist:Int = abs(target[0]) + abs(target[1]) 4 for ghost in ghosts 5 { 6 var t:Int = abs(ghost[0] - target[0]) + abs(ghost[1] - target[1]) 7 if t <= dist 8 { 9 return false 10 } 11 } 12 return true 13 } 14 }
36ms
1 class Solution { 2 func escapeGhosts(_ ghosts: [[Int]], _ target: [Int]) -> Bool { 3 return distance([0, 0], target) < ghosts.map {distance($0, target)}.min()! 4 } 5 6 func distance(_ point: [Int], _ target: [Int]) -> Int { 7 return abs(point[0] - target[0]) + abs(point[1] - target[1]) 8 } 9 }
44ms
1 class Solution { 2 func escapeGhosts(_ ghosts: [[Int]], _ target: [Int]) -> Bool { 3 let path = abs(target[0]) + abs(target[1]) 4 5 let minGhostPath = ghosts.map({ abs(target[0] - $0[0]) + abs(target[1] - $0[1]) }).min() ?? Int.max 6 7 return path < minGhostPath 8 } 9 }
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· 没有源码,如何修改代码逻辑?
· 全程不用写代码,我用AI程序员写了一个飞机大战
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· DeepSeek 开源周回顾「GitHub 热点速览」
· 记一次.NET内存居高不下排查解决与启示
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了