723 Candy Crush

1. Question

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

Given a 2D integer arrayboardrepresenting the grid of candy, different positive integersboard[i][j]represent different types of candies. A value ofboard[i][j] = 0represents 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 astable stateby 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 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:

  1. The length ofboardwill be in the range [3, 50].

  2. The length ofboard[i]will be in the range [3, 50].

  3. Eachboard[i][j]will initially start as an integer in the range [1, 2000].

2. Implementation

(1) Two Pointers

思路: Two Pointers的思想指体现在Candy Drop的时候,对每一列,将非零的数往下drop,而将0往上移。

class Solution {
    public int[][] candyCrush(int[][] board) {
       if (board == null || board.length == 0) {
           return new int[0][0];
       }
       int m = board.length, n = board[0].length;

       while (true) {
           Set<Coordinate> set = new HashSet<>();

           // Find index where candy can be crushed
           for (int i = 0; i < m; i++) {
               for (int j = 0; j < n; j++) {
                  if (board[i][j] == 0) continue;

                  int top = i, bottom = i, left = j, right = j;

                  while (top >= 0 && top > i - 3 && board[top][j] == board[i][j]) --top;
                  while (bottom < m && bottom < i + 3 && board[bottom][j] == board[i][j]) ++bottom;
                  while (left >= 0 && left > j - 3 && board[i][left] == board[i][j]) --left;
                  while (right < n && right < j + 3 && board[i][right] == board[i][j]) ++right;

                  if (right - left > 3 || bottom - top > 3) {
                      set.add(new Coordinate(i, j));
                  }
               }
           }

           // Board is in stable state
           if (set.isEmpty()) break;

           // Mark index as 0
           for (Coordinate c : set) {
               board[c.x][c.y] = 0;
           }

           // Use Two Pointers to move zero to top, and keep number in order in column
           for (int col = 0; col < n; col++) {
               int index = m - 1;
               for (int row = m - 1; row >= 0; row--) {
                   if (board[row][col] != 0) {
                       swap(board, index, row, col); 
                       --index;
                   }
               }
           }
       }
       return board;
    }

    public void swap(int[][] board, int row1, int row2, int col) {
        if (row1 == row2) return;
        int temp = board[row1][col];
        board[row1][col] = board[row2][col];
        board[row2][col] = temp;
    }

    class Coordinate {
        int x;
        int y;

        public Coordinate(int x, int y) {
            this.x = x;
            this.y = y;
        }
    }
}

3. Time & Space Complexity

时间复杂度O(mn), 空间复杂度O(mn)

Last updated