当前位置:网站首页>LeetCode Question of the Day (874. Walking Robot Simulation)
LeetCode Question of the Day (874. Walking Robot Simulation)
2022-07-30 01:51:00 【wangjun861205】
A robot on an infinite XY-plane starts at point (0, 0) facing north. The robot can receive a sequence of these three possible types of commands:
-2: Turn left 90 degrees.
-1: Turn right 90 degrees.
1 <= k <= 9: Move forward k units, one unit at a time.
Some of the grid squares are obstacles. The ith obstacle is at grid point obstacles[i] = (xi, yi). If the robot runs into an obstacle, then it will instead stay in its current location and move on to the next command.
Return the maximum Euclidean distance that the robot ever gets from the origin squared (i.e. if the distance is 5, return 25).
Note:
North means +Y direction.
East means +X direction.
South means -Y direction.
West means -X direction.
Example 1:
Input: commands = [4,-1,3], obstacles = []
Output: 25
Explanation: The robot starts at (0, 0):
- Move north 4 units to (0, 4).
- Turn right.
- Move east 3 units to (3, 4).
The furthest point the robot ever gets from the origin is (3, 4), which squared is 32 + 42 = 25 units away.
Example 2:
Input: commands = [4,-1,4,-2,4], obstacles = [[2,4]]
Output: 65
Explanation: The robot starts at (0, 0):
- Move north 4 units to (0, 4).
- Turn right.
- Move east 1 unit and get blocked by the obstacle at (2, 4), robot is at (1, 4).
- Turn left.
- Move north 4 units to (1, 8).
The furthest point the robot ever gets from the origin is (1, 8), which squared is 12 + 82 = 65 units away.
Example 3:
Input: commands = [6,-1,-1,6], obstacles = []
Output: 36
Explanation: The robot starts at (0, 0):
- Move north 6 units to (0, 6).
- Turn right.
- Turn right.
- Move south 6 units to (0, 0).
The furthest point the robot ever gets from the origin is (0, 6), which squared is 62 = 36 units away.
Constraints:
- 1 <= commands.length <= 104
- commands[i] is either -2, -1, or an integer in the range [1, 9].
- 0 <= obstacles.length <= 104
- -3 _ 104 <= xi, yi <= 3 _ 104
- The answer is guaranteed to be less than 231.
Began to use binary search to find the obstacles on the road, Results how all the whole do not come out, The last trial again again, Steps found range is 1 到 9, The number of orders less than 10 的 4 次方, 这样一算, Even step by step to calculate, 也就是 10 的 5 次方的数量级, 是可以接受的. This I used a integer to represent the direction(0 到 3), The actual displacement can be calculated directly.
use std::collections::{
HashMap, HashSet};
impl Solution {
pub fn robot_sim(commands: Vec<i32>, obstacles: Vec<Vec<i32>>) -> i32 {
let mut x = 0;
let mut y = 0;
let mut dir = 0;
let obstacles = obstacles.into_iter().fold(HashMap::new(), |mut m, l| {
m.entry(l[0]).or_insert(HashSet::new()).insert(l[1]);
m
});
let mut ans = 0;
for command in commands {
match command {
-2 => dir = (dir + 3) % 4,
-1 => dir = (dir + 1) % 4,
_ => {
if dir % 2 == 1 {
for _ in 0..command {
if let Some(obst) = obstacles.get(&(x - (dir - 2))) {
if obst.contains(&y) {
break;
}
}
x -= dir - 2;
}
ans = ans.max(x.pow(2) + y.pow(2));
} else {
for _ in 0..command {
if let Some(obst) = obstacles.get(&x) {
if obst.contains(&(y - (dir - 1))) {
break;
}
}
y -= dir - 1;
}
ans = ans.max(x.pow(2) + y.pow(2));
}
}
}
}
ans
}
}
边栏推荐
- postgresql日常运维技能,适合初学者
- npm ERR! code ENOTSUP npm ERR! notsup Unsupported engine for [email protected]: wanted: {“n
- exness:美国GDP萎缩,日元反弹受捧
- TCP/IP 常见问题
- Towards Better Understanding of Self-Supervised Representations / Q-Score
- The display and hiding of widgets for flutter learning
- LeetCode 2342. Digital and equal number of one of the biggest and
- Object.freeze()学习
- Recommendation systems: feature engineering, common features
- 【SemiDrive源码分析】【MailBox核间通信】43 - 基于Mailbox IPCC RPC 实现核间通信(代码实现篇)
猜你喜欢

【LeetCode每日一题】——637.二叉树的层平均值

LeetCode 2352. 相等行列对

LeetCode 2348. Number of all-zero subarrays

【微服务~Nacos】Nacos之配置中心

matlab洗碗机节水模型的优化设计-这是个课题名称,不是买洗碗机,审核的人仔细看下,谢谢

Recommendation system: collection of user "behavioral data" [use Kafka and Cassandra to process data] [if it overlaps with business data, it also needs to be collected independently]

exness: U.S. GDP shrinks, yen bounces back

机械设备制造企业如何借助ERP系统,解决成本核算难题?

It is really strong to apply the @Transactional transaction annotation to such perfection!

1.2Recyclerview实现Item点击事件
随机推荐
【LeetCode每日一题】——872.叶子相似的树
typora 透明背景图片
【VMWARE--共享文件】
MySQL高级篇(高阳)建表sql语句大全
多线程---初阶
msyql set names 字符转换处理
The display and hiding of widgets for flutter learning
【微服务~Nacos】Nacos服务提供者和服务消费者
Understanding the prototype chain in js, what problem does the prototype chain solve?
图解LeetCode——593. 有效的正方形(难度:中等)
js中原型链的理解,原型链解决的是什么问题?
mysql 报错 is too long for user name (should be no longer than 16)
The Rising Star of Interface Test Automation-YApi Interface Management Platform
LeetCode 2348. Number of all-zero subarrays
LeetCode 2348. 全 0 子数组的数目
多AZ双活容灾部署的云端系统架构设计说明书框架
【MySQL必知必会】 范式 | ER模型
我的创作纪念日
App测试需要测什么
fluttter学习之ButtonStyle 、MaterialStateProperty