LeetCode #909. Snakes and Ladders

题目描述:

On an N x N board, the numbers from 1 to N*N are written boustrophedonically starting from the bottom left of the board, and alternating direction each row.  For example, for a 6 x 6 board, the numbers are written as follows:

You start on square 1 of the board (which is always in the last row and first column).  Each move, starting from square x, consists of the following:

  • You choose a destination square S with number x+1x+2x+3x+4x+5, or x+6, provided this number is <= N*N.
    • (This choice simulates the result of a standard 6-sided die roll: ie., there are always at most 6 destinations, regardless of the size of the board.)
  • If S has a snake or ladder, you move to the destination of that snake or ladder.  Otherwise, you move to S.

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].

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 continue moving.  (For example, if the board is `[[4,-1],[-1,3]]`, and on the first move your destination square is `2`, then you finish your first move at `3`, because you do not continue moving to `4`.)

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

Example 1:

Input: [
[-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: 
At 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 (row 3, column 5), 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.
It can be shown that you need at least 4 moves to reach the N*N-th square, so the answer is 4.

Note:

  1. 2 <= board.length = board[0].length <= 20
  2. board[i][j] is between 1 and N*N or is equal to -1.
  3. The board square with number 1 has no snake or ladder.
  4. The board square with number N*N has no snake or ladder.
class Solution {
public:
    int snakesAndLadders(vector<vector<int>>& board) {
        int n=board.size();
        unordered_map<int,int> dist;
        queue<int> q;
        q.push(1);
        dist[1]=0;
        while(!q.empty())
        {
            int cur=q.front();
            q.pop();
            // 一旦到达终点就返回,因为达到终点的路径很多,因为BFS的关系,第一次达到的情况路径肯定最短
            if(cur==n*n) return dist[cur];
            // 起点处没有梯子,一次移动最多跳一个梯子是很重要的条件
            for(int i=1;i<=6;i++)
            {
                if(cur+i>n*n) break;
                pair<int,int> xy=get_coordinate(cur+i, n); // 计算cur+i的坐标
                // 计算跳到的下一个位置
                int next= (board[xy.first][xy.second]==-1) ? cur+i : board[xy.first][xy.second];
                if(dist.count(next)==0)
                {
                    dist[next]=dist[cur]+1;
                    q.push(next);
                }
            }
        }
        return -1;
    }
    
    pair<int,int> get_coordinate(int x, int n)
    {
        int i=n-(x-1)/n-1;
        int j=0;
        if(((x-1)/n)%2==0) j=(x-1)%n;
        else j=n-(x-1)%n-1;
        return {i,j};
    }
};

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值