LeetCode 723. Candy Crush

Posted jxr041100

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 723. 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:

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,2,1,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: 

public int[][] candyCrush(int[][] board) {
        if (board == null || board.length == 0 || board[0].length == 0) return board;
        int cnt = 0;
        int m = board.length, n = board[0].length;
        for (int i = 0; i < m; i++) {
            for (int j = 0; j < n; j++) {
                if (board[i][j] == 0) continue;
                if (   (i > 0 && Math.abs(board[i-1][j]) == board[i][j] && (i < m - 1 && board[i+1][j] == board[i][j]))
                    || (i > 1 && Math.abs(board[i-1][j]) == board[i][j] && Math.abs(board[i-2][j]) == board[i][j])
                    || (i < m - 2 && board[i+1][j] == board[i][j] && board[i+2][j] == board[i][j])
                    || (j > 0 && Math.abs(board[i][j-1]) == board[i][j] && (j < n - 1 && board[i][j+1] == board[i][j]))
                    || (j > 1 && Math.abs(board[i][j-1]) == board[i][j] && Math.abs(board[i][j-2]) == board[i][j])
                    || (j < n - 2 && board[i][j+1] == board[i][j] && board[i][j+2] == board[i][j])) {
                    cnt++;
                    board[i][j] = -board[i][j];
                }
            }
        }
        for (int j = 0; j < n; j++) {
            int ptr = m - 1;
            for (int i = m - 1; i >= 0; i--) {
                if (board[i][j] > 0) {
                    board[ptr--][j] = board[i][j];
                }
            }
            for (int i = ptr; i >= 0; i--) {
                board[i][j] = 0;
            }
        }
        if (cnt == 0) {
            return board;
        } else {
            return candyCrush(board);
        }
    }

 

以上是关于LeetCode 723. Candy Crush的主要内容,如果未能解决你的问题,请参考以下文章

[LeetCode] 723. Candy Crush 糖果粉碎

723. Candy Crush

[LeetCode] Candy Crush 糖果粉碎

消消乐candy crush类三消游戏程序逻辑分析

Candy Crush Saga Type 倒计时生命系统 jQuery & Phonegap

使用 Cocos2d-x + Marmalade 制作类似 Candy Crush 的地图