2023-01-24 Daily Challenge

Today I have done leetcode's January LeetCoding Challenge with cpp.

January LeetCoding Challenge 24

Description

Snakes and Ladders

You are given an n x n integer matrix board where the cells are labeled from 1 to n2 in a Boustrophedon style starting from the bottom left of the board (i.e. board[n - 1][0]) and alternating direction each row.

You start on square 1 of the board. In each move, starting from square curr, do the following:

  • Choose a destination square next with a label in the range [curr + 1, min(curr + 6, n2)].
    <ul>
    	<li>This choice simulates the result of a standard <strong>6-sided die roll</strong>: i.e., there are always at most 6 destinations, regardless of the size of the board.</li>
    </ul>
    </li>
    <li>If <code>next</code> has a snake or ladder, you <strong>must</strong> move to the destination of that snake or ladder. Otherwise, you move to <code>next</code>.</li>
    <li>The game ends when you reach the square <code>n<sup>2</sup></code>.</li>
    

A board square on row r and column c has a snake or ladder if board[r][c] != -1. The destination of that snake or ladder is board[r][c]. Squares 1 and n2 do not have a snake or ladder.

Note that you only take a snake or ladder at most once per move. If the destination to a snake or ladder is the start of another snake or ladder, you do not follow the subsequent snake or ladder.

  • For example, suppose the board is [[-1,4],[-1,3]], and on the first move, your destination square is 2. You follow the ladder to square 3, but do not follow the subsequent ladder to 4.

Return the least number of moves required to reach the square n2. If it is not possible to reach the square, return -1.

 

Example 1:

Input: board = [[-1,-1,-1,-1,-1,-1],[-1,-1,-1,-1,-1,-1],[-1,-1,-1,-1,-1,-1],[-1,35,-1,-1,13,-1],[-1,-1,-1,-1,-1,-1],[-1,15,-1,-1,-1,-1]]
Output: 4
Explanation: 
In the beginning, you start at square 1 (at row 5, column 0).
You decide to move to square 2 and must take the ladder to square 15.
You then decide to move to square 17 and must take the snake to square 13.
You then decide to move to square 14 and must take the ladder to square 35.
You then decide to move to square 36, ending the game.
This is the lowest possible number of moves to reach the last square, so return 4.

Example 2:

Input: board = [[-1,-1],[-1,3]]
Output: 1

 

Constraints:

  • n == board.length == board[i].length
  • 2 <= n <= 20
  • grid[i][j] is either -1 or in the range [1, n2].
  • The squares labeled 1 and n2 do not have any ladders or snakes.

Solution

class Solution {
  pair<int, int> getCoordinate(int n, int pos) {
    int rowOffset = (pos - 1) / n;
    int colOffset = (pos - 1) % n;

    int row = n - 1 - rowOffset;
    int col = rowOffset % 2 ? n - 1 - colOffset : colOffset;
    return {row, col};
  }
public:
  int snakesAndLadders(vector<vector<int>>& board) {
    int n = board.size();
    vector<int> visits(n * n + 1);

    queue<int> q;
    q.push(1);
    visits[1] = true;
    int step = 0;

    while(q.size()) {
      int sz = q.size();
      for(int _ = 0; _ < sz; ++_) {
        int cur = q.front();
        // cout << cur << ':' << endl;
        if(cur == n * n) return step;
        q.pop();
        for(int i = 1; i < 7; ++i) {
          int next = cur + i;
          if(next > n * n) break;
          auto [row, col] = getCoordinate(n, next);
          // cout << row << ' ' << col;
          if(board[row][col] != -1) {
            next = board[row][col];
          }
          // cout << ' ' << next << endl;
          if(visits[next]) continue;
          visits[next] = true;
          q.push(next);
        }
      }
      step += 1;
    }

    return -1;
  }
};

// Accepted
// 214/214 cases passed (33 ms)
// Your runtime beats 53.16 % of cpp submissions
// Your memory usage beats 73 % of cpp submissions (12.9 MB)