LeetCode小算法记录(四十七)生命游戏

根据 百度百科 ,生命游戏,简称为生命,是英国数学家约翰·何顿·康威在 1970 年发明的细胞自动机。

给定一个包含 m × n 个格子的面板,每一个格子都可以看成是一个细胞。每个细胞都具有一个初始状态:1 即为活细胞(live),或 0 即为死细胞(dead)。每个细胞与其八个相邻位置(水平,垂直,对角线)的细胞都遵循以下四条生存定律:

如果活细胞周围八个位置的活细胞数少于两个,则该位置活细胞死亡;
如果活细胞周围八个位置有两个或三个活细胞,则该位置活细胞仍然存活;
如果活细胞周围八个位置有超过三个活细胞,则该位置活细胞死亡;
如果死细胞周围正好有三个活细胞,则该位置死细胞复活;
根据当前状态,写一个函数来计算面板上所有细胞的下一个(一次更新后的)状态。下一个状态是通过将上述规则同时应用于当前状态下的每个细胞所形成的,其中细胞的出生和死亡是同时发生的。

示例:

输入: 
[
  [0,1,0],
  [0,0,1],
  [1,1,1],
  [0,0,0]
]
输出:
[
  [0,0,0],
  [1,0,1],
  [0,1,1],
  [0,1,0]
]
 

进阶:

你可以使用原地算法解决本题吗?请注意,面板上所有格子需要同时被更新:你不能先更新某些格子,然后使用它们的更新后的值再更新其他格子。
本题中,我们使用二维数组来表示面板。原则上,面板是无限的,但当活细胞侵占了面板边界时会造成问题。你将如何解决这些问题?

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/game-of-life
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

package leetCodeTest;

import java.util.Arrays;

public class 生命游戏 {
    public static void main(String[] args) {
        int[][] board = new int[][]{
                {0,1,0},
                {0,0,1},
                {1,1,1},
                {0,0,0}
        };
        new 生命游戏().gameOfLife(board);
        int i;
        for (i=0;i<board.length;i++){
            System.out.println(Arrays.toString(board[i]));
        }
    }
    /**
     * 传统累计的方法,需要开辟新的二维数组去存储运算结果。
     * 首先计算每一位周围的1的个数,然后将1的个数输入统计的二维数组指定位置。
     * 最后得到统计值二维数组,遍历该数组,按要求更改board数组的值。
     */
//    public static void gameOfLife(int[][] board) {
//        int[][] num = new int[board.length][board[0].length];
//        int i,j;
//        for (i=0;i<board.length;i++){
//            for (j=0;j<board[i].length;j++){
//                num[i][j] = count(board, i, j);
//            }
//        }
//        for (i=0;i<board.length;i++){
//            for (j=0;j<board[i].length;j++){
//                if (board[i][j] == 1){
//                    if (num[i][j] < 2)
//                        board[i][j] = 0;
//                    if (num[i][j] == 2 || num[i][j] == 3)
//                        continue;
//                    if (num[i][j] > 3)
//                        board[i][j] = 0;
//                }else {
//                    if (num[i][j] == 3)
//                        board[i][j] = 1;
//                }
//            }
//        }
//    }
//    public static int count(int[][] board,int i,int j){
//        int[] Xi = {0,0,1,1,-1,-1,1,-1};
//        int[] Yj = {1,-1,1,-1,1,-1,0,0};
//        int len,count = 0;
//        for (len = 0;len<Xi.length;len++){
//            int numi = i + Xi[len];
//            int numj = j + Yj[len];
//            if (numi<0||numi>=board.length||numj<0||numj>=board[i].length)
//                continue;
//            if (board[numi][numj] == 1)
//                count++;
//        }
//        return count;
//    }
    /**
     * 不适用额外的存储空间。如果细胞从0变为1,则将其值置为2;
     * 如果细胞从1变为0,则将其值置为3。那么他们以模2取余后的值,即为原来的值。
     * 这样虽然数值改变了,并不影响计算其他细胞的更新。计算完成后,再将具有这些特殊状态的值还原为原有的值。
     *
     * 作者:ycoder
     * 链接:https://leetcode-cn.com/problems/game-of-life/solution/ding-yi-te-shu-zhuang-tai-by-ycoder/
     * 来源:力扣(LeetCode)
     * 著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
     */
    private final int[][] directions = new int[][]{{1,0},{-1,0},{0,1},{0,-1},{-1,1},{-1,-1},{1,1},{1,-1}};
    private int[][] board;

    public void gameOfLife(int[][] board) {
        this.board = board;
        int count = 0;
        for (int i = 0; i < board.length; i ++) {
            for (int j = 0; j < board[i].length; j ++) {
                count = aliveCount(i, j);
                if (board[i][j] == 1 && count < 2) {
                    board[i][j] = 3;
                }
                if (board[i][j] == 1 && (count == 2 || count == 3)) {
                    board[i][j] = 1;
                }
                if (board[i][j] == 1 && count > 3) {
                    board[i][j] = 3;
                }
                if (board[i][j] == 0 && count == 3) {
                    board[i][j] = 2;
                }
            }
        }

        for (int i = 0; i < board.length; i ++) {
            for (int j = 0; j < board[i].length; j ++) {
                if (board[i][j] < 2) continue;
                board[i][j] = (board[i][j] + 1) % 2;
            }
        }
    }

    private int aliveCount(int i, int j) {
        int x = 0, y = 0, count = 0;
        for (int k = 0; k < directions.length; k ++) {
            x = i + directions[k][0];
            y = j + directions[k][1];
            if (x >= 0 && x < board.length && y >= 0 && y < board[x].length) {
                count += board[x][y] % 2;
            }
        }
        return count;
    }

}
发布了124 篇原创文章 · 获赞 13 · 访问量 4万+

猜你喜欢

转载自blog.csdn.net/qq_31404603/article/details/105268405