前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >LWC 57:723. Candy Crush

LWC 57:723. Candy Crush

作者头像
用户1147447
发布2018-01-02 10:04:49
4830
发布2018-01-02 10:04:49
举报
文章被收录于专栏:机器学习入门机器学习入门

LWC 57:723. Candy Crush

传送门:723. Candy Crush

Problem:

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

Input: [[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:

alt text
alt text

Note:

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].

思路: 这不就是开心消消乐么,思路很直接,只要根据列和行检测出连续三个以上的块后,记录下来,消去,并继续更新,直到找不到连续三个块为止。

代码如下:

代码语言:javascript
复制
    public int[][] candyCrush(int[][] board) {
        int n = board.length;
        int m = board[0].length;
        boolean[][] next = new boolean[n][m];
        while (getNext(next, board)){
            List<Integer>[] ans = new ArrayList[m];
            for (int i = 0; i < m; ++i){
                ans[i] = new ArrayList<>();
                for (int j = n - 1; j >= 0; --j){
                    if (!next[j][i]) ans[i].add(board[j][i]);
                }
            }
            board = new int[n][m];
            // 重写
            for (int j = 0; j < m; ++j){
                for (int i = 0; i < ans[j].size(); ++i){
                    board[n - 1 - i][j] = ans[j].get(i);
                }
            }
            next = new boolean[n][m];
        }
        return board;
    }

    public boolean getNext(boolean[][] next, int[][] board){
        boolean exist = false;
        // 遍历行        
        int n = board.length;
        int m = board[0].length;

        for (int i = 0; i < n; ++i){
            int prev = board[i][0];
            int count = 1;
            for (int j = 1; j < m; ++j){
                if (board[i][j] == prev && board[i][j] != 0){
                    count ++;
                }   
                else{
                    if (count >= 3){
                        for (int l = 0; l < count; ++l){
                            next[i][j - 1 - l] = true;
                        }
                        exist = true;
                    }
                    count = 1;          
                }
                prev = board[i][j];
            }

            if (count >= 3){
                for (int l = 0; l < count; ++l){
                    next[i][m - 1 - l] = true;
                }
                exist = true;
            }
        }

        // 遍历列
        for (int i = 0; i < m; ++i){
            int prev = board[0][i];
            int count = 1;
            for (int j = 1; j < n; ++j){
                if (board[j][i] == prev && board[j][i] != 0){
                    count ++;
                }
                else{
                    if (count >= 3){
                        for (int l = 0; l < count; ++l){
                            next[j - 1 - l][i] = true;
                        }
                        exist = true;
                    }
                    count = 1;
                }
                prev = board[j][i];
            }

            if (count >= 3){
                    for (int l = 0; l < count; ++l){
                        next[n - 1 - l][i] = true;
                    }
                    exist = true;
            }
        }


        return exist;        
    }    
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2017-11-10 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • LWC 57:723. Candy Crush
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档