• 909. Snakes and Ladders


    问题:

    给定n*n的二维数组,

    board[i][j]:每个格子代表,到达该格子后的下一个位置。

    ⚠️ 注意:位置标记:从最后一行第一个开始,标记为 1 开始,成Z字形向上,依次递增。直到第一行第一个格子位置为 n*n。

    • 若board[i][j]==-1,(假设当前位置标记为x)那么它的下一个位置可以为x+1~x+6任意一个(不能超过n*n)
    • 若board[i][j]!=-1,那么下一个位置即为所示标记位置。(我们将这种看作快捷路径,蛇or梯子)

    求,从位置 1 开始,最少走多少步,能够到达 n*n 位置(最后一个格子)

    若不能到达,返回-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:
    2 <= board.length = board[0].length <= 20
    board[i][j] is between 1 and N*N or is equal to -1.
    The board square with number 1 has no snake or ladder.
    The board square with number N*N has no snake or ladder.
    

      

    解法:BFS

    首先,将board二维数组,映射到 如题意所述的位置标记 一维数组。route

    queue入队位置标记 1。

    visited标记 1。

    对每个当前处理的位置,next:有x+1~x+6,6种选择,

    其中如果route[x+i]!=-1 那么x+i的这个目的地修改为route[x+i]

    再进行next入队。

    遍历queue。每层即为一步。steps++

    当当前位置==n*n,return steps。

    代码参考:

     1 class Solution {
     2 public:
     3     /*void print_vector(vector<int>& rout) {
     4         cout<< "{" ;
     5         for(auto r:rout) {
     6             cout<< r <<",";
     7         }
     8         cout<< "}" <<endl;
     9     }*/
    10     int snakesAndLadders(vector<vector<int>>& board) {
    11         int n = board.size();
    12         int steps = 0;
    13         vector<int> route(n*n+1);
    14         int k=1;
    15         for(int i=n-1; i>=0; i--) {
    16             for(int j=0; j<n; j++) {
    17                 if((n-i)%2) route[k] = board[i][j];
    18                 else route[k] = board[i][n-j-1];
    19                 k++;
    20             }
    21         }
    22         //print_vector(route);
    23         queue<int> q;
    24         unordered_set<int> visited;
    25         q.push(1);
    26         visited.insert(1);
    27         while(!q.empty()) {
    28             int sz = q.size();
    29             for(int i=0; i<sz; i++) {
    30                 int cur = q.front();
    31                 q.pop();
    32                 if(cur == n*n) return steps;
    33                 for(int i=1; i<7; i++) {
    34                     if(cur+i>n*n) continue;
    35                     int next = route[cur+i];
    36                     if(next==-1) next = cur+i;
    37                     if(visited.insert(next).second) {
    38                         q.push(next);
    39                     }
    40                 }
    41             }
    42             steps++;
    43         }
    44         return -1;
    45     }
    46 };

  • 相关阅读:
    阻止用户复制页面上的文字的几种方法
    js设置聊天信息停留在最底部
    js动态删除表格中的某一行
    XmlSerializer vs DataContractSerializer: Serialization in Wcf
    WCF Service Binding Explained
    Visual Studio设置远程调试
    Could not download the Silverlight application
    .NET 中的三种接口实现方式
    化零为整WCF(9) 序列化(DataContractSerializer, XmlSerializer, DataContractJsonSerializer, SoapFormatter, BinaryFormatter)
    化零为整WCF(14) 事务(Transaction)
  • 原文地址:https://www.cnblogs.com/habibah-chang/p/14527674.html
Copyright © 2020-2023  润新知