【LeetCode】885. Spiral Matrix III 解题报告(Python & C++)
作者: 负雪明烛
id: fuxuemingzhu
个人博客: http://fuxuemingzhu.cn/
题目地址:https://leetcode.com/problems/spiral-matrix-iii/description/
题目描述
On a 2 dimensional grid with R rows and C columns, we start at (r0, c0) facing east.
Here, the north-west corner of the grid is at the first row and column, and the south-east corner of the grid is at the last row and column.
Now, we walk in a clockwise spiral shape to visit every position in this grid.
Whenever we would move outside the boundary of the grid, we continue our walk outside the grid (but may return to the grid boundary later.)
Eventually, we reach all R * C spaces of the grid.
Return a list of coordinates representing the positions of the grid in the order they were visited.
Example 1:
Input: R = 1, C = 4, r0 = 0, c0 = 0
Output: [[0,0],[0,1],[0,2],[0,3]]
Example 2:
Input: R = 5, C = 6, r0 = 1, c0 = 4
Output: [[1,4],[1,5],[2,5],[2,4],[2,3],[1,3],[0,3],[0,4],[0,5],[3,5],[3,4],[3,3],[3,2],[2,2],[1,2],[0,2],[4,5],[4,4],[4,3],[4,2],[4,1],[3,1],[2,1],[1,1],[0,1],[4,0],[3,0],[2,0],[1,0],[0,0]]
Note:
- 1 <= R <= 100
- 1 <= C <= 100
- 0 <= r0 < R
- 0 <= c0 < C
题目大意
按照顺时针顺序,把一个矩阵的每个位置遍历一遍。遍历时,圈子越来越大,不能走已经走过了的节点。而且,如果走到了矩阵的外边,那么依然可以走。返回的结果是遍历矩阵节点时的顺序。
解题方法
这个题目和普通的矩阵遍历的区别就是,它可以走到矩阵的外边。但这也降低了难度。
既然如此,那么我们就完全可以直接按照自己的步骤去走就行,当走到矩阵内部的时候,才去添加到结果之中。
所以,使用了一个生成器,每次就生成下一步走到哪了,不考虑外界条件。然后调用这个生成器,判断是否在矩阵之中并且是否所有的位置都已经遍历了。
代码如下:
class Solution(object):
def spiralMatrixIII(self, R, C, r0, c0):
"""
:type R: int
:type C: int
:type r0: int
:type c0: int
:rtype: List[List[int]]
"""
def nxt(r, c):
step = 1
yield (r, c)
while True:
for _ in range(step):
c += 1
yield (r, c)
for _ in range(step):
r += 1
yield (r, c)
step += 1
for _ in range(step):
c -= 1
yield (r, c)
for _ in range(step):
r -= 1
yield (r, c)
step += 1
ans = []
for r, c in nxt(r0, c0):
if 0 <= r < R and 0 <= c < C:
ans.append([r, c])
if len(ans) == R * C:
break
return ans
C++代码如下:
class Solution {
public:
vector<vector<int>> spiralMatrixIII(int R, int C, int r0, int c0) {
vector<vector<int>> res;
int dx = 0, dy = 1;
int step = 1;
int count = 1;
res.push_back(vector<int>{r0, c0});
while (count < R * C) {
dx = 0, dy = 1;
for (int s = 0; s < step; s++) {
r0 += dx;
c0 += dy;
if (r0 >= 0 && r0 < R && c0 >= 0 && c0 < C) {
res.push_back(vector<int>{r0, c0});
count ++;
if (count >= R * C) return res;
}
}
dx = 1, dy = 0;
for (int s = 0; s < step; s++) {
r0 += dx;
c0 += dy;
if (r0 >= 0 && r0 < R && c0 >= 0 && c0 < C) {
res.push_back(vector<int>{r0, c0});
count ++;
if (count >= R * C) return res;
}
}
step ++;
dx = 0, dy = -1;
for (int s = 0; s < step; s++) {
r0 += dx;
c0 += dy;
if (r0 >= 0 && r0 < R && c0 >= 0 && c0 < C) {
res.push_back(vector<int>{r0, c0});
count ++;
if (count >= R * C) return res;
}
}
dx = -1, dy = 0;
for (int s = 0; s < step; s++) {
r0 += dx;
c0 += dy;
if (r0 >= 0 && r0 < R && c0 >= 0 && c0 < C) {
res.push_back(vector<int>{r0, c0});
count ++;
if (count >= R * C) return res;
}
}
step ++;
}
return res;
}
};
参考资料:
https://leetcode.com/problems/spiral-matrix-iii/discuss/158995/python-infinite-generator-(yield)
日期
2018 年 9 月 4 日 —— 迎接明媚的阳光!
2018 年 12 月 4 日 —— 周二啦!
【LeetCode】885. Spiral Matrix III 解题报告(Python & C++)的更多相关文章
- [LeetCode] 885. Spiral Matrix III 螺旋矩阵之三
On a 2 dimensional grid with R rows and C columns, we start at (r0, c0) facing east. Here, the north ...
- LeetCode 885. Spiral Matrix III
原题链接在这里:https://leetcode.com/problems/spiral-matrix-iii/ 题目: On a 2 dimensional grid with R rows and ...
- 885. Spiral Matrix III
On a 2 dimensional grid with R rows and C columns, we start at (r0, c0) facing east. Here, the north ...
- 【LeetCode】59. Spiral Matrix II 解题报告(Python)
作者: 负雪明烛 id: fuxuemingzhu 个人博客: http://fuxuemingzhu.cn/ 目录 题目描述 题目大意 解题方法 维护四个边界和运动方向 保存已经走过的位置 日期 题 ...
- LeetCode: Spiral Matrix II 解题报告-三种方法解决旋转矩阵问题
Spiral Matrix IIGiven an integer n, generate a square matrix filled with elements from 1 to n2 in sp ...
- 【LeetCode】62. Unique Paths 解题报告(Python & C++)
作者: 负雪明烛 id: fuxuemingzhu 个人博客: http://fuxuemingzhu.cn/ 题目地址:https://leetcode.com/problems/unique-pa ...
- 【LeetCode】Set Matrix Zeroes 解题报告
今天看到CSDN博客的勋章换了图表,同一时候也添加显示了博客等级,看起来都听清新的,感觉不错! [题目] Given a m x n matrix, if an element is 0, set i ...
- leetcode 889. Spiral Matrix III
On a 2 dimensional grid with R rows and C columns, we start at (r0, c0) facing east. Here, the north ...
- 【LeetCode】556. Next Greater Element III 解题报告(Python)
[LeetCode]556. Next Greater Element III 解题报告(Python) 标签(空格分隔): LeetCode 作者: 负雪明烛 id: fuxuemingzhu 个人 ...
随机推荐
- Oracle-连接多个字段
0.函数concat(A,B)作用:链接字符串 区别: Oracle中:CONCAT()只允许两个参数:(貌似可以内嵌) Mysql中:CONCAT()可以连接多个参数: 1.用||符号进行拼接 例子 ...
- Beautiful Soup解析库的安装和使用
Beautiful Soup是Python的一个HTML或XML的解析库,我们可以用它来方便地从网页中提取数据.它拥有强大的API和多样的解析方式.官方文档:https://www.crummy.co ...
- Selenium的安装和使用
一.Selenium的安装,Selenium是一个自动化测试工具,利用它我们可以驱动浏览器执行特定的动作,如点击.下拉等操作.对于一些JavaScript渲染的页面来说,这种抓取方式非常有效.1.pi ...
- day11 函数
day11 函数 一.函数基础 """ 1 什么是函数 函数是盛放代码的容器:把实现某一功能的代码放到一个函数内就制造一个工具 2 为何要用函数 没有用函数之前程序的问题 ...
- day9 文件处理
day09 文件处理 一.注册与登录功能 username = input('请输入您的密码:').strip() password = input('请输入您的密码:').strip() f = o ...
- 零基础学习java------29---------网络日志数据session案例,runtime(导出jar程序)
一. 网络日志数据session案例 部分数据 数据中的字段分别为: 访客ip地址,访客访问时间,访客请求的url及协议,网站响应码,网站返回数据量,访客的referral url,访客的客户端操作系 ...
- 【编程思想】【设计模式】【创建模式creational 】工厂模式factory_method
Python版 https://github.com/faif/python-patterns/blob/master/creational/factory_method.py #!/usr/bin/ ...
- SpringColud微服务-微服务概述
一.什么是微服务架构 微服务架构是一种架构模式,它提倡讲单一应用程序划分为一组小的服务,服务之间互相协调.互相配合,为用户提供最终价值.每个服务运行在单独的进程当中,服务与服务之间采用轻量级的通信机制 ...
- 【Java基础】transient关键字
1. transient的作用及使用方法 我们都知道一个对象只要实现了Serilizable接口,这个对象就可以被序列化,java的这种序列化模式为开发者提供了很多便利,我们可以不必关系具体序列化的过 ...
- postman 中get传参数
mybatis中: @RequestMapping(value = "/detail/{id}", method = RequestMethod.GET, produces = & ...