Last active
September 4, 2018 15:57
-
-
Save icai/1e3beded0cf8614676765eda3961aa14 to your computer and use it in GitHub Desktop.
a 2D integer array
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
858. Candy Crush | |
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: | |
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. | |
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.) | |
After the above steps, there may exist more candies that can be crushed. If so, you need to repeat the above steps. | |
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 | |
Given 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] | |
], | |
return | |
[ | |
[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 | |
Notice | |
The length of board will be in the range [3, 50]. | |
The length of board[i] will be in the range [3, 50]. | |
Each board[i][j] will initially start as an integer in the range [1, 2000]. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @param board: a 2D integer array | |
* @return: the current board | |
*/ | |
const candyCrush = function (board) { | |
// Write your code here | |
let allflish = false; | |
let deleteNodes = []; | |
let rangex = board.length; | |
let rangey = board[0].length; | |
let linedis = 3 - 1; | |
const fps = () => { | |
const getBigIndex = ()=> { | |
let index = {}; | |
let x = board.length - 1; | |
for (var i = 0; i <= x; i++) { | |
let y = board[i].length - 1; | |
for (var j = 0; j <= y; j++) { | |
let item = board[i][j]; | |
if(item !== 0 && !deleteNodes.includes(item) && index[item]) { | |
index[item].points.push({x: i, y: j}) | |
} else { | |
index[item].points = [{x: i, y: j}] | |
} | |
} | |
} | |
let p = linedis + 1; | |
let q = {}; | |
for(let k in index) { | |
if(index[k].points.length > p) { | |
p = index[k].points.length; | |
q = {name: k, points: index[k].points} | |
} | |
} | |
return q; | |
} | |
const compareAndUpdate = ()=> { | |
let current = getBigIndex(); | |
deleteNodes.push(current.name); | |
if(!current.name) { | |
return board; | |
} else { | |
// core code | |
// 任意两点距离 差值大于2 | |
let len = current.points.length; | |
for (var i = 0; i < len; i++) { | |
for (var j = 0; j < len; j++) { | |
if(i < j) { // 单向判断 | |
if(current.points[i].x == current.points[j].x) { | |
if(Math.abs(current.points[j].y - current.points[i].y) >= linedis) { | |
// 寻找最长 | |
} | |
} | |
if(current.points[i].y == current.points[j].y) { | |
if(Math.abs(current.points[j].x - current.points[i].x) >= linedis) { | |
// 寻找最长 | |
} | |
} | |
} | |
} | |
} | |
fps() | |
} | |
} | |
return compareAndUpdate(); | |
} | |
return fps() | |
} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// https://www.lintcode.com/problem/candy-crush/description | |
[[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]] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment