博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LeetCode 723. Candy Crush
阅读量:4621 次
发布时间:2019-06-09

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

原题链接在这里:

题目:

This question is about implementing a basic elimination algorithm for Candy Crush.

Given a 2D integer array board representing the grid of candy, different positive integers board[i][j] represent different types of candies. A value of board[i][j] = 0 represents that the cell at position (i, j) is empty. The given board represents the state of the game following the player's move. Now, you need to restore the board to a stable state by crushing candies according to the following rules:

  1. If three or more candies of the same type are adjacent vertically or horizontally, "crush" them all at the same time - these positions become empty.
  2. After crushing all candies simultaneously, if an empty space on the board has candies on top of itself, then these candies will drop until they hit a candy or bottom at the same time. (No new candies will drop outside the top boundary.)
  3. After the above steps, there may exist more candies that can be crushed. If so, you need to repeat the above steps.
  4. If there does not exist more candies that can be crushed (ie. the board is stable), then return the current board.

You need to perform the above rules until the board becomes stable, then return the current board.

Example:

Input:board = [[110,5,112,113,114],[210,211,5,213,214],[310,311,3,313,314],[410,411,412,5,414],[5,1,512,3,3],[610,4,1,613,614],[710,1,2,713,714],[810,1,2,1,1],[1,1,2,2,2],[4,1,4,4,1014]]Output:[[0,0,0,0,0],[0,0,0,0,0],[0,0,0,0,0],[110,0,0,0,114],[210,0,0,0,214],[310,0,0,113,314],[410,0,0,213,414],[610,211,112,313,614],[710,311,412,613,714],[810,411,512,713,1014]]Explanation:

Note:

  1. The length of board will be in the range [3, 50].
  2. The length of board[i] will be in the range [3, 50].
  3. Each board[i][j] will initially start as an integer in the range [1, 2000].

题解:

There are two steps. 

Step 1: Mark 3 adjacent candies. Check if there are 3 adjacent candies. First check row by row, then column by column.

If there are, mark these values as negative.

Step 2: Crush them. Rewrite board with only positive numbers.

If there is crushing, that means there may be another round of crash, use recursion. Otherwise, there wouldn't be another round of crash, return the board.

Time Comlexity: O(M^2*n^2). m = board.length. n = board[0].length.

Each crash, there would be 3 crashed at minimum. Totally there are m*n candies. So recursion could run for m*n/3 times.

Each recursion, it takes O(m*n). 

Space: O(1).

AC Java: 

1 class Solution { 2     public int[][] candyCrush(int[][] board) { 3         if(board == null || board.length == 0 | board[0].length == 0){ 4             return board; 5         } 6          7         boolean todo = false; 8         int m = board.length; 9         int n = board[0].length;10         for(int i = 0; i
=0; i--){33 if(board[i][j] > 0){34 board[br--][j] = board[i][j];35 }36 }37 38 while(br>=0){39 board[br--][j] = 0;40 }41 }42 43 return todo ? candyCrush(board) : board;44 }45 }

 

转载于:https://www.cnblogs.com/Dylan-Java-NYC/p/11421584.html

你可能感兴趣的文章
织梦多域名解析到同一个空间导致打开链接不一致怎么办?
查看>>
Xcode10 library not found for -lstdc++ 找不到问题
查看>>
Mysql 8.0.13如何重置密码
查看>>
发布功能完成
查看>>
excel 合并单元格
查看>>
iOS设计模式简介
查看>>
c# 扩展方法 奇思妙用 高级篇 九:OrderBy(string propertyName, bool desc)
查看>>
C语言中的地址传递(传指针,传递给形参的指针仍然是实参指针的一份拷贝)
查看>>
redis缓存数据库及Python操作redis
查看>>
opencms忘记Admin用户登录密码解决方案
查看>>
forms组件
查看>>
create-react-app 配置sass
查看>>
02_关系数据库
查看>>
在win7电脑中如何查看运行进程的PID标识符
查看>>
[Vue] vue-cli3.0安装
查看>>
C++学习之字符串
查看>>
图像化列表
查看>>
2014年10月9日——语言基础2
查看>>
mysql查
查看>>
[正则表达式]难点和误区
查看>>