博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
leetcode笔记(七)529. Minesweeper
阅读量:4965 次
发布时间:2019-06-12

本文共 3917 字,大约阅读时间需要 13 分钟。

  • 题目描述

Let's play the minesweeper game (, )!

You are given a 2D char matrix representing the game board. 'M' represents an unrevealed mine, 'E' represents an unrevealed empty square, 'B' represents a revealed blank square that has no adjacent (above, below, left, right, and all 4 diagonals) mines, digit ('1' to '8') represents how many mines are adjacent to this revealed square, and finally 'X' represents a revealed mine.

Now given the next click position (row and column indices) among all the unrevealed squares ('M' or 'E'), return the board after revealing this position according to the following rules:

  1. If a mine ('M') is revealed, then the game is over - change it to 'X'.
  2. If an empty square ('E') with no adjacent mines is revealed, then change it to revealed blank ('B') and all of its adjacent unrevealed squares should be revealed recursively.
  3. If an empty square ('E') with at least one adjacent mine is revealed, then change it to a digit ('1' to '8') representing the number of adjacent mines.
  4. Return the board when no more squares will be revealed.

Example 1:

Input: [['E', 'E', 'E', 'E', 'E'], ['E', 'E', 'M', 'E', 'E'], ['E', 'E', 'E', 'E', 'E'], ['E', 'E', 'E', 'E', 'E']]Click : [3,0]Output: [['B', '1', 'E', '1', 'B'], ['B', '1', 'M', '1', 'B'], ['B', '1', '1', '1', 'B'], ['B', 'B', 'B', 'B', 'B']]Explanation:

Example 2:

Input: [['B', '1', 'E', '1', 'B'], ['B', '1', 'M', '1', 'B'], ['B', '1', '1', '1', 'B'], ['B', 'B', 'B', 'B', 'B']]Click : [1,2]Output: [['B', '1', 'E', '1', 'B'], ['B', '1', 'X', '1', 'B'], ['B', '1', '1', '1', 'B'], ['B', 'B', 'B', 'B', 'B']]Explanation:

Note:

  1. The range of the input matrix's height and width is [1,50].
  2. The click position will only be an unrevealed square ('M' or 'E'), which also means the input board contains at least one clickable square.
  3. The input board won't be a stage when game is over (some mines have been revealed).
  4. For simplicity, not mentioned rules should be ignored in this problem. For example, you don't need to reveal all the unrevealed mines when the game is over, consider any cases that you will win the game or flag any squares.
  • 解题思路:

题目属于背景复杂,但本质不难的类型。因为没玩过扫雷游戏,所以看了半天题目,了解了规则后,可以发现属于传统的广度优先搜索问题。基础实现的时候,会超时间。

最后改了半天边缘问题,仍然是超时。最后,看了英文版leetcode的讨论区,发现就一行神秘的代码,就可以解决重复处理节点的问题~~~

  • 示例代码
class Solution {public:    vector
> updateBoard(vector
>& board, vector
& click) { int row = click[0]; int col = click[1]; int maxRow = board.size(); int maxCol = board[0].size(); vector
> results; for(int i = 0; i < maxRow; i++) { vector
temp(board[i]); results.push_back(temp); } // M if(results[row][col] == 'M') results[row][col] = 'X'; // E else if(results[row][col] == 'E') { queue
> eNodes; eNodes.push(make_pair(row, col)); while(!eNodes.empty()) { pair
curr = eNodes.front(); eNodes.pop(); row = curr.first; col = curr.second; results[row][col] = '0'; // check neighbors for(int i = -1; i <= 1; i++) { int currRow = row + i; if(currRow < maxRow && currRow >= 0) { for(int j = -1; j <= 1; j++) { if(i == 0 && j == 0) continue; int currCol = col + j; if(currCol < maxCol && currCol >= 0) { // M add to counter if(results[currRow][currCol] == 'M') { results[row][col]++; } } } } } // around no M if(results[row][col] == '0') { results[row][col] = 'B'; // add neighbors to deal for(int i = -1; i <= 1; i++) { int currRow = row + i; if(currRow < maxRow && currRow >= 0) { for(int j = -1; j <= 1; j++) { if(i == 0 && j == 0) continue; int currCol = col + j; if(currCol < maxCol && currCol >= 0) { // E add to deal if(results[currRow][currCol] == 'E') { eNodes.push(make_pair(currRow, currCol)); results[currRow][currCol] = 'B'; // optimize to avoid repeatly added } } } } } } }// end of dealing } return results; }};

 

转载于:https://www.cnblogs.com/niuxu18/p/note_leetcode_7.html

你可能感兴趣的文章
邻接表详解
查看>>
服务器一:分布式服务器结构
查看>>
迭代dict的value
查看>>
eclipse package,source folder,folder区别及相互转换
查看>>
Py 可能是最全面的 python 字符串拼接总结(带注释版)
查看>>
如何从亿量级中判断一个数是否存在?
查看>>
客户数据(类的调用)
查看>>
cookie session 和登录验证
查看>>
(转载)博弈汇总【巴什博奕,威佐夫博弈,尼姆博弈,斐波那契博弈】
查看>>
【数据结构作业】-【带头结点的单链表就地逆置】
查看>>
【Pet HDU - 4707 】【利用并查集找深度】
查看>>
《Java程序设计实验》 软件工程18-1,3 OO实验2
查看>>
【Herding HDU - 4709 】【数学(利用叉乘计算三角形面积)】
查看>>
【7-9 有重复的数据I (20 分)】【此题卡输入,需要自己写个输入挂】
查看>>
JRebel安装部署,激活
查看>>
OPENSSL使用方法
查看>>
下载GO的开源开发工具LITEIDE
查看>>
接口操作XML
查看>>
idhttp访问DATASNAP有密码验证的中间件
查看>>
libmidas.so.2
查看>>