返回介绍

solution / 0800-0899 / 0885.Spiral Matrix III / README_EN

发布于 2024-06-17 01:03:33 字数 5135 浏览 0 评论 0 收藏 0

885. Spiral Matrix III

中文文档

Description

You start at the cell (rStart, cStart) of an rows x cols grid facing east. The northwest corner is at the first row and column in the grid, and the southeast corner is at the last row and column.

You will walk in a clockwise spiral shape to visit every position in this grid. Whenever you move outside the grid's boundary, we continue our walk outside the grid (but may return to the grid boundary later.). Eventually, we reach all rows * cols spaces of the grid.

Return _an array of coordinates representing the positions of the grid in the order you visited them_.

 

Example 1:

Input: rows = 1, cols = 4, rStart = 0, cStart = 0
Output: [[0,0],[0,1],[0,2],[0,3]]

Example 2:

Input: rows = 5, cols = 6, rStart = 1, cStart = 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]]

 

Constraints:

  • 1 <= rows, cols <= 100
  • 0 <= rStart < rows
  • 0 <= cStart < cols

Solutions

Solution 1

class Solution:
  def spiralMatrixIII(
    self, rows: int, cols: int, rStart: int, cStart: int
  ) -> List[List[int]]:
    ans = [[rStart, cStart]]
    if rows * cols == 1:
      return ans
    k = 1
    while True:
      for dr, dc, dk in [[0, 1, k], [1, 0, k], [0, -1, k + 1], [-1, 0, k + 1]]:
        for _ in range(dk):
          rStart += dr
          cStart += dc
          if 0 <= rStart < rows and 0 <= cStart < cols:
            ans.append([rStart, cStart])
            if len(ans) == rows * cols:
              return ans
      k += 2
class Solution {
  public int[][] spiralMatrixIII(int rows, int cols, int rStart, int cStart) {
    int cnt = rows * cols;
    int[][] ans = new int[cnt][2];
    ans[0] = new int[] {rStart, cStart};
    if (cnt == 1) {
      return ans;
    }
    for (int k = 1, idx = 1;; k += 2) {
      int[][] dirs = new int[][] {{0, 1, k}, {1, 0, k}, {0, -1, k + 1}, {-1, 0, k + 1}};
      for (int[] dir : dirs) {
        int r = dir[0], c = dir[1], dk = dir[2];
        while (dk-- > 0) {
          rStart += r;
          cStart += c;
          if (rStart >= 0 && rStart < rows && cStart >= 0 && cStart < cols) {
            ans[idx++] = new int[] {rStart, cStart};
            if (idx == cnt) {
              return ans;
            }
          }
        }
      }
    }
  }
}
class Solution {
public:
  vector<vector<int>> spiralMatrixIII(int rows, int cols, int rStart, int cStart) {
    int cnt = rows * cols;
    vector<vector<int>> ans;
    ans.push_back({rStart, cStart});
    if (cnt == 1) return ans;
    for (int k = 1;; k += 2) {
      vector<vector<int>> dirs = {{0, 1, k}, {1, 0, k}, {0, -1, k + 1}, {-1, 0, k + 1}};
      for (auto& dir : dirs) {
        int r = dir[0], c = dir[1], dk = dir[2];
        while (dk-- > 0) {
          rStart += r;
          cStart += c;
          if (rStart >= 0 && rStart < rows && cStart >= 0 && cStart < cols) {
            ans.push_back({rStart, cStart});
            if (ans.size() == cnt) return ans;
          }
        }
      }
    }
  }
};
func spiralMatrixIII(rows int, cols int, rStart int, cStart int) [][]int {
  cnt := rows * cols
  ans := [][]int{[]int{rStart, cStart}}
  if cnt == 1 {
    return ans
  }
  for k := 1; ; k += 2 {
    dirs := [][]int{{0, 1, k}, {1, 0, k}, {0, -1, k + 1}, {-1, 0, k + 1}}
    for _, dir := range dirs {
      r, c, dk := dir[0], dir[1], dir[2]
      for dk > 0 {
        rStart += r
        cStart += c
        if rStart >= 0 && rStart < rows && cStart >= 0 && cStart < cols {
          ans = append(ans, []int{rStart, cStart})
          if len(ans) == cnt {
            return ans
          }
        }
        dk--
      }
    }
  }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文