C#LeetCode刷题之#874-模拟行走机器人(Walking Robot Simulation)
问题
该文章的最新版本已迁移至个人博客【比特飞】,单击链接 https://www.byteflying.com/archives/4038 访问。
机器人在一个无限大小的网格上行走,从点 (0, 0) 处开始出发,面向北方。该机器人可以接收以下三种类型的命令:
-2:向左转 90 度
-1:向右转 90 度
1 <= x <= 9:向前移动 x 个单位长度
在网格上有一些格子被视为障碍物。
第 i 个障碍物位于网格点 (obstacles[i][0], obstacles[i][1])
如果机器人试图走到障碍物上方,那么它将停留在障碍物的前一个网格方块上,但仍然可以继续该路线的其余部分。
返回从原点到机器人的最大欧式距离的平方。
输入: commands = [4,-1,3], obstacles = []
输出: 25
解释: 机器人将会到达 (3, 4)
输入: commands = [4,-1,4,-2,4], obstacles = [[2,4]]
输出: 65
解释: 机器人在左转走到 (1, 8) 之前将被困在 (1, 4) 处
提示:
- 0 <= commands.length <= 10000
- 0 <= obstacles.length <= 10000
- -30000 <= obstacle[i][0] <= 30000
- -30000 <= obstacle[i][1] <= 30000
- 答案保证小于 2 ^ 31
A robot on an infinite grid starts at point (0, 0) and faces north. The robot can receive one of three possible types of commands:
-2: turn left 90 degrees
-1: turn right 90 degrees
1 <= x <= 9: move forward x units
Some of the grid squares are obstacles.
The i-th obstacle is at grid point (obstacles[i][0], obstacles[i][1])
If the robot would try to move onto them, the robot stays on the previous grid square instead (but still continues following the rest of the route.)
Return the square of the maximum Euclidean distance that the robot will be from the origin.
Input: commands = [4,-1,3], obstacles = []
Output: 25
Explanation: robot will go to (3, 4)
Input: commands = [4,-1,4,-2,4], obstacles = [[2,4]]
Output: 65
Explanation: robot will be stuck at (1, 4) before turning left and going to (1, 8)
Note:
- 0 <= commands.length <= 10000
- 0 <= obstacles.length <= 10000
- -30000 <= obstacle[i][0] <= 30000
- -30000 <= obstacle[i][1] <= 30000
- The answer is guaranteed to be less than 2 ^ 31.
示例
该文章的最新版本已迁移至个人博客【比特飞】,单击链接 https://www.byteflying.com/archives/4038 访问。
public class Program {
public static void Main(string[] args) {
var commands = new int[] { 4, -1, 3 };
var obstacles = new int[][] { };
var res = RobotSim(commands, obstacles);
Console.WriteLine(res);
commands = new int[] { 4, -1, 4, -2, 4 };
obstacles = new int[][] { new int[] { 2, 4 } };
res = RobotSim2(commands, obstacles);
Console.WriteLine(res);
commands = new int[] { 1, -1, 5, -2, 9 };
obstacles = new int[][] { new int[] { 1, 2 } };
res = RobotSim3(commands, obstacles);
Console.WriteLine(res);
Console.ReadKey();
}
public enum Direction {
Up = 0,
Left = 1,
Down = 2,
Right = 3
}
private static void ComputerDirection(ref Direction direction, int cmd) {
if(cmd == -2) {
//向左转 90 度
if(direction == Direction.Right) {
direction = Direction.Up;
} else direction++;
} else if(cmd == -1) {
//向右转 90 度
if(direction == Direction.Up) {
direction = Direction.Right;
} else direction--;
}
}
public static int RobotSim(int[] commands, int[][] obstacles) {
//传统解法
var x = 0;
var y = 0;
var move = 0;
var curDirection = Direction.Up;
var distance = 0;
var obset = new HashSet<KeyValuePair<int, int>>();
foreach(var obs in obstacles) {
obset.Add(new KeyValuePair<int, int>(obs[0], obs[1]));
}
foreach(var cmd in commands) {
if(cmd == -1 || cmd == -2) ComputerDirection(ref curDirection, cmd);
else {
move = 0;
switch(curDirection) {
case Direction.Up:
while(++move <= cmd) {
if(obset.Contains(new KeyValuePair<int, int>(x, y + move))) break;
}
y += --move;
break;
case Direction.Left:
while(++move <= cmd) {
if(obset.Contains(new KeyValuePair<int, int>(x - move, y))) break;
}
x -= --move;
break;
case Direction.Down:
while(++move <= cmd) {
if(obset.Contains(new KeyValuePair<int, int>(x, y - move))) break;
}
y -= --move;
break;
case Direction.Right:
while(++move <= cmd) {
if(obset.Contains(new KeyValuePair<int, int>(x + move, y))) break;
}
x += --move;
break;
default:
break;
}
distance = Math.Max(distance, x * x + y * y);
}
}
return distance;
}
public static int RobotSim2(int[] commands, int[][] obstacles) {
//优化方向的解析
//可以理解为方向向量
var direc = new List<KeyValuePair<int, int>>
{
{ new KeyValuePair<int, int>(0, 1) }, //上
{ new KeyValuePair<int, int>(1, 0) }, //右
{ new KeyValuePair<int, int>(0, -1) }, //下
{ new KeyValuePair<int, int>(-1, 0) } //左
};
//障碍物哈希表,加速障碍物的判定
var obset = new HashSet<KeyValuePair<int, int>>();
//x 值和 y 值计数
var x = 0;
var y = 0;
//最大距离
var distance = 0;
//方向值
var direction = 0;
//初始化障碍物
foreach(var obs in obstacles) {
obset.Add(new KeyValuePair<int, int>(obs[0], obs[1]));
}
//解析每个命令
foreach(var cmd in commands) {
//0,1,2,3代表 4个方向,请自行分析
if(cmd == -2) {
//向左转 90 度
direction = (direction + 3) % 4;
} else if(cmd == -1) {
//向右转 90 度
direction = (direction + 1) % 4;
} else {
//先记录命令的值,因为 cmd 为迭代变量,C#语法规定不允许变更
var count = cmd;
//在水平方向或垂直方向上分析障碍物
//记数每次 -1,直接 0 时为止
//count-- 不能写成 --count,请自行分析
while(count-- > 0) {
//记录移动到的位置
var dx = x + direc[direction].Key;
var dy = y + direc[direction].Value;
//障碍物判定,使用哈希加速查找
//因为哈希查找为 O(1) 时间复杂度,即为常量时间复杂度
if(obset.Contains(new KeyValuePair<int, int>(dx, dy))) {
//若包含说明有障碍物,直接退出循环
break;
}
//若不包含说明没有障碍物
//更新 x 和 y 的值
x = dx;
y = dy;
//每次计算距离
distance = Math.Max(distance, x * x + y * y);
}
}
}
//返回最大距离
return distance;
}
public static int RobotSim3(int[] commands, int[][] obstacles) {
//基本思路同 RobotSim2
//此解法参考 LeetCode 官方【阅读】模块
//实测效率略快于 RobotSim2 的解法
var direc = new List<KeyValuePair<int, int>>
{
{ new KeyValuePair<int, int>(0, 1) },
{ new KeyValuePair<int, int>(1, 0) },
{ new KeyValuePair<int, int>(0, -1) },
{ new KeyValuePair<int, int>(-1, 0) }
};
var obset = new HashSet<long>();
var x = 0;
var y = 0;
var distance = 0;
var direction = 0;
//优化编码
foreach(var obs in obstacles) {
long ox = (long)obs[0] + 30000;
long oy = (long)obs[1] + 30000;
obset.Add((ox << 16) + oy);
}
foreach(var cmd in commands) {
if(cmd == -2) {
direction = (direction + 3) % 4;
} else if(cmd == -1) {
direction = (direction + 1) % 4;
} else {
var count = cmd;
while(count-- > 0) {
var dx = x + direc[direction].Key;
var dy = y + direc[direction].Value;
long code = (((long)dx + 30000) << 16) + ((long)dy + 30000);
//优化障碍物判定
if(obset.Contains(code)) {
break;
}
x = dx;
y = dy;
distance = Math.Max(distance, x * x + y * y);
}
}
}
return distance;
}
}
以上给出3种算法实现,以下是这个案例的输出结果:
该文章的最新版本已迁移至个人博客【比特飞】,单击链接 https://www.byteflying.com/archives/4038 访问。
25
65
125
分析:
设命令和障碍物的数量分别为 m 和 n,那么以上3种算法的时间复杂度应当均为 。
C#LeetCode刷题之#874-模拟行走机器人(Walking Robot Simulation)的更多相关文章
- [Swift]LeetCode874. 模拟行走机器人 | Walking Robot Simulation
A robot on an infinite grid starts at point (0, 0) and faces north. The robot can receive one of th ...
- C#LeetCode刷题-贪心算法
贪心算法篇 # 题名 刷题 通过率 难度 44 通配符匹配 17.8% 困难 45 跳跃游戏 II 25.5% 困难 55 跳跃游戏 30.6% 中等 122 买卖股票的最佳时机 II C ...
- LeetCode刷题总结-数组篇(中)
本文接着上一篇文章<LeetCode刷题总结-数组篇(上)>,继续讲第二个常考问题:矩阵问题. 矩阵也可以称为二维数组.在LeetCode相关习题中,作者总结发现主要考点有:矩阵元素的遍历 ...
- LeetCode刷题专栏第一篇--思维导图&时间安排
昨天是元宵节,过完元宵节相当于这个年正式过完了.不知道大家有没有投入继续投入紧张的学习工作中.年前我想开一个Leetcode刷题专栏,于是发了一个投票想了解大家的需求征集意见.投票于2019年2月1日 ...
- leetcode 刷题进展
最近没发什么博客了 凑个数 我的leetcode刷题进展 https://gitee.com/def/leetcode_practice 个人以为 刷题在透不在多 前200的吃透了 足以应付非算法岗 ...
- LeetCode刷题指南(字符串)
作者:CYC2018 文章链接:https://github.com/CyC2018/CS-Notes/blob/master/docs/notes/Leetcode+%E9%A2%98%E8%A7% ...
- leetcode刷题记录--js
leetcode刷题记录 两数之和 给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标. 你可以假设每种输入只会对应一个答案.但 ...
- LeetCode刷题总结之双指针法
Leetcode刷题总结 目前已经刷了50道题,从零开始刷题学到了很多精妙的解法和深刻的思想,因此想按方法对写过的题做一个总结 双指针法 双指针法有时也叫快慢指针,在数组里是用两个整型值代表下标,在链 ...
- Leetcode刷题记录(python3)
Leetcode刷题记录(python3) 顺序刷题 1~5 ---1.两数之和 ---2.两数相加 ---3. 无重复字符的最长子串 ---4.寻找两个有序数组的中位数 ---5.最长回文子串 6- ...
随机推荐
- Ethical Hacking - NETWORK PENETRATION TESTING(9)
WEP Cracking Packet Injection What if the AP was idle, or had no clients associated with it? In this ...
- CondenseNet:可学习分组卷积,原作对DenseNet的轻量化改造 | CVPR 2018
CondenseNet特点在于可学习分组卷积的提出,结合训练过程进行剪枝,不仅能准确地剪枝,还能继续训练,使网络权重更平滑,是个很不错的工作 来源:晓飞的算法工程笔记 公众号 论文:Neural ...
- 关于Java8的精心总结
前言 最近公司里比较新的项目里面,看到了很多关于java8新特性的用法,由于之前自己对java8的新特性不是很了解也没有去做深入研究,所以最近就系统的去学习了一下,然后总结了一篇文章第一时间和大家 ...
- 2020年Dubbo30道高频面试题!还在为面试烦恼赶快来看看!
前言 Dubbo是一个分布式服务框架,致力于提供高性能和透明化的RPC远程服务调用方案,以及SOA服务治理方案.简单的说,dubbo就是个服务框架,如果没有分布式的需求,其实是不需要用的,只有在分布式 ...
- xenomai内核解析--双核系统调用(三)--如何为xenomai添加一个系统调用
版权声明:本文为本文为博主原创文章,转载请注明出处.如有错误,欢迎指正. @ 目录 一.添加系统调用 二.Cobalt库添加接口 三.应用使用 一.添加系统调用 下面给xenomai添加一个系统调用g ...
- css:实现文本两行或多行文本溢出显示省略号
div{ display: -webkit-box; -webkit-box-orient: vertical; word-break: break-all; word-wrap: break-wor ...
- 中介者模式(c++实现)
中介者模式 目录 中介者模式 模式定义 模式动机 UML类图 源码实现 优点 缺点 模式定义 中介者模式(Mediator),用一个中介对象来封装一系列的对象交互.中介者使各对象不需要显示地相互引用, ...
- Monster Audio 使用教程 (五) 添加区域效果器
我们可以在音轨上,某一个时间区域内,添加一组效果器,这组效果器,只有在播放指针进入它的区域时,效果器才可以处理声音 首先,先在时间刻度上,设定好时间范围 然后,在音轨的波形区域点击右键,然后点击[添加 ...
- placeholder CSS设置
IE似乎一个冒号才生效,而chrome则是两个冒号才生效 input::-webkit-input-placeholder{ color:red; } input:-ms-input-placehol ...
- 数据库(十二):pymysql
进击のpython ***** 数据库--pymysql 数据库就算是学习完毕了,但是我们学习数据库的本质是什么? 是想让数据库像文件存储一样将信息存储起来供我们调用 那回归本行,我就应该是用pyth ...