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:
You need to perform the above rules until the board becomes stable, then return the current board.
Example 1:
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:
board
will be in the range [3, 50].board[i]
will be in the range [3, 50].board[i][j]
will initially start as an integer in the range [1, 2000].Intuition
\nWe need to simply perform the algorithm as described. It consists of two major steps: a crush step, and a gravity step. We work through each step individually.
\nAlgorithm
\nCrushing Step
\nWhen crushing, one difficulty is that we might accidentally crush candy that is part of another row. For example, if the board is:
\n123\n145\n111\n
and we crush the vertical row of 1
s early, we may not see there was also a horizontal row.
To remedy this, we should flag candy that should be crushed first. We could use an auxillary toCrush
boolean array, or we could mark it directly on the board by making the entry negative (ie. board[i][j] = -Math.abs(board[i][j])
)
As for how to scan the board, we have two approaches. Let\'s call a line any row or column of the board.
\nFor each line, we could use a sliding window (or itertools.groupby
in Python) to find contiguous segments of the same character. If any of these segments have length 3 or more, we should flag them.
Alternatively, for each line, we could look at each width-3 slice of the line: if they are all the same, then we should flag those 3.
\nAfter, we can crush the candy by setting all flagged board
cells to zero.
Gravity Step
\nFor each column, we want all the candy to go to the bottom. One way is to iterate through and keep a stack of the (uncrushed) candy, popping and setting as we iterate through the column in reverse order.
\nAlternatively, we could use a sliding window approach, maintaining a read and write head. As the read head iterates through the column in reverse order, when the read head sees candy, the write head will write it down and move one place. Then, the write head will write zeroes to the remainder of the column.
\nWe showcase the simplest approaches to these steps in the solutions below.
\n\nComplexity Analysis
\nTime Complexity: , where is the number of rows and columns in board
. We need to scan the board, and we might crush only 3 candies repeatedly.
Space Complexity: additional complexity, as we edit the board in place.
\nAnalysis written by: @awice.
\n