Skip to content

Latest commit

 

History

History

885

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

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. 1 <= R <= 100
  2. 1 <= C <= 100
  3. 0 <= r0 < R
  4. 0 <= c0 < C

Companies:
Dataminr

Related Topics:
Math

Solution 1.

// OJ: https://leetcode.com/problems/spiral-matrix-iii/
// Author: github.com/lzl124631x
// Time: O(max(R, C)^2)
// Space: O(1)
class Solution {
private:
    vector<vector<int>> ans;
    int r, c;
    void add(int x, int y) {
        if (x < 0 || x >= r || y < 0 || y >= c) return;
        ans.push_back({ x, y });
    }
public:
    vector<vector<int>> spiralMatrixIII(int R, int C, int r0, int c0) {
        r = R;
        c = C;
        int x = r0, y = c0, cnt = R * C, d = 2;
        ans.push_back({ x, y });
        while (ans.size() < cnt) {
            add(x, ++y);
            for (int i = 1; i < d; ++i) add(++x, y);
            for (int i = 0; i < d; ++i) add(x, --y);
            for (int i = 0; i < d; ++i) add(--x, y);
            for (int i = 0; i < d; ++i) add(x, ++y);
            d += 2;
        }
        return ans;
    }
};