加载中...
289-生命游戏(Game of Life)
发表于:2021-12-03 | 分类: 中等
字数统计: 717 | 阅读时长: 3分钟 | 阅读量:

原文链接: https://leetcode-cn.com/problems/game-of-life

英文原文

According to Wikipedia's article: "The Game of Life, also known simply as Life, is a cellular automaton devised by the British mathematician John Horton Conway in 1970."

The board is made up of an m x n grid of cells, where each cell has an initial state: live (represented by a 1) or dead (represented by a 0). Each cell interacts with its eight neighbors (horizontal, vertical, diagonal) using the following four rules (taken from the above Wikipedia article):

  1. Any live cell with fewer than two live neighbors dies as if caused by under-population.
  2. Any live cell with two or three live neighbors lives on to the next generation.
  3. Any live cell with more than three live neighbors dies, as if by over-population.
  4. Any dead cell with exactly three live neighbors becomes a live cell, as if by reproduction.

The next state is created by applying the above rules simultaneously to every cell in the current state, where births and deaths occur simultaneously. Given the current state of the m x n grid board, return the next state.

 

Example 1:

Input: board = [[0,1,0],[0,0,1],[1,1,1],[0,0,0]]
Output: [[0,0,0],[1,0,1],[0,1,1],[0,1,0]]

Example 2:

Input: board = [[1,1],[1,0]]
Output: [[1,1],[1,1]]

 

Constraints:

  • m == board.length
  • n == board[i].length
  • 1 <= m, n <= 25
  • board[i][j] is 0 or 1.

 

Follow up:

  • Could you solve it in-place? Remember that the board needs to be updated simultaneously: You cannot update some cells first and then use their updated values to update other cells.
  • In this question, we represent the board using a 2D array. In principle, the board is infinite, which would cause problems when the active area encroaches upon the border of the array (i.e., live cells reach the border). How would you address these problems?

中文题目

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

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

  1. 如果活细胞周围八个位置的活细胞数少于两个,则该位置活细胞死亡;
  2. 如果活细胞周围八个位置有两个或三个活细胞,则该位置活细胞仍然存活;
  3. 如果活细胞周围八个位置有超过三个活细胞,则该位置活细胞死亡;
  4. 如果死细胞周围正好有三个活细胞,则该位置死细胞复活;

下一个状态是通过将上述规则同时应用于当前状态下的每个细胞所形成的,其中细胞的出生和死亡是同时发生的。给你 m x n 网格面板 board 的当前状态,返回下一个状态。

 

示例 1:

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

示例 2:

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

 

提示:

  • m == board.length
  • n == board[i].length
  • 1 <= m, n <= 25
  • board[i][j]01

 

进阶:

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

通过代码

高赞题解

一个 int 有 32 bit,输入数据只用了一个 bit,所以我们可以利用其他空闲的bit位进行“原地修改”。

具体的位运算操作可以查看代码注释。


class Solution {

public:

    void gameOfLife(vector<vector<int>>& board) {

        int dx[] = {-1,  0,  1, -1, 1, -1, 0, 1};

        int dy[] = {-1, -1, -1,  0, 0,  1, 1, 1};



        for(int i = 0; i < board.size(); i++) {

            for(int j = 0 ; j < board[0].size(); j++) {

                int sum = 0;

                for(int k = 0; k < 8; k++) {

                    int nx = i + dx[k];

                    int ny = j + dy[k];

                    if(nx >= 0 && nx < board.size() && ny >= 0 && ny < board[0].size()) {

                        sum += (board[nx][ny]&1); // 只累加最低位

                    }

                }

                if(board[i][j] == 1) {

                    if(sum == 2 || sum == 3) {

                        board[i][j] |= 2;  // 使用第二个bit标记是否存活

                    }

                } else {

                    if(sum == 3) {

                        board[i][j] |= 2; // 使用第二个bit标记是否存活

                    }

                }

            }

        }

        for(int i = 0; i < board.size(); i++) {

            for(int j = 0; j < board[i].size(); j++) {

                board[i][j] >>= 1; //右移一位,用第二bit覆盖第一个bit。

            }

        }

    }

};

image.png

如果感觉有点意思,加个反手一个赞吧~

统计信息

通过次数 提交次数 AC比率
55089 73086 75.4%

提交历史

提交时间 提交结果 执行时间 内存消耗 语言

相似题目

题目 难度
矩阵置零 中等
上一篇:
287-寻找重复数(Find the Duplicate Number)
下一篇:
290-单词规律(Word Pattern)
本文目录
本文目录