Thursday, May 2, 2019

LeetCode [723] Candy Crush

723. Candy Crush
Medium

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].
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].
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
class Solution {
public:
    //all candies above i.j drop by one place
    void candiesDrop(vector<vector<int>>& board, int i, int j)
    {
        for(int k = i; k>0; --k)
        {
            board[k][j] = board[k-1][j];
        }
        board[0][j] = 0;
    }

    vector<vector<int>> candyCrush(vector<vector<int>>& board) {
        int m = board.size(), n = board[0].size();
        bool cont = true;
        set<vector<int>> removedCandies;
        
        while(cont){
            cont = false;
            removedCandies.clear();
            for(int i=0; i<m; ++i)
            {
                for(int j=0; j<n; ++j)
                {
                    int c = board[i][j];
                    if(c==0) continue;
                    //horizontally
                    if(j+1<n && board[i][j+1]==c && j+2<n && board[i][j+2]==c)
                    {
                        int k = j;
                        while(k<n && board[i][k]==c){
                            removedCandies.insert(vector<int>{i, k});
                            k++;
                        }
                    }

                    //vertically
                    if(i+1<m && board[i+1][j]==c && i+2<m && board[i+2][j]==c)
                    {
                        int k = i;
                        while(k<m && board[k][j]==c)
                        {
                            removedCandies.insert(vector<int>{k, j});
                            k++;
                        }
                    }
                }
            }

            //crush
            if(!removedCandies.empty())
            {
                cont = true;
                vector<vector<int>> vec(removedCandies.begin(), removedCandies.end());
                for(auto p:vec)
                {
                    candiesDrop(board, p[0], p[1]);
                }
            }
        }
        
        return board;
    }
};

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
class Solution {
    public int[][] candyCrush(int[][] board) {
        int m = board.length, n = board[0].length;
        boolean cont = true;

        while(cont){
            cont = false;
            for(int i=0; i<m ; ++i){
                for(int j=0; j<n; ++j){
                    int v = Math.abs(board[i][j]);
                    if(v == 0) continue;
                    //check horizontally
                    if(j+2<n && Math.abs(board[i][j+1])==v && Math.abs(board[i][j+2])==v){
                        cont = true;
                        board[i][j] = -v; board[i][j+1] = -v; board[i][j+2] = -v;
                    }
                    //check vertically
                    if(i+2<m && Math.abs(board[i+1][j])==v && Math.abs(board[i+2][j])==v){
                        cont = true;
                        board[i][j] = -v; board[i+1][j] = -v; board[i+2][j] = -v;
                    }
                }
            }

            if(cont){
                for(int j=0; j<n; ++j)
                {
                    int b = m-1;
                    for(int i=m-1; i>=0; --i){
                        if(board[i][j]>0){
                            board[b--][j] = board[i][j];
                        }
                    }
                    while(b>=0) board[b--][j] = 0;
                }
            }
        }
        return board;
    }
}

No comments:

Post a Comment