289. Game of Life

289-Game of Life
**Question
Editorial Solution

My Submissions

Total Accepted: 25596
Total Submissions: 71934
Difficulty: Medium

According to the 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."
Given a board with m by n cells, each cell has an initial state live (1) or dead (0). Each cell interacts with itseight neighbors (horizontal, vertical, diagonal) using the following four rules (taken from the above Wikipedia article):

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

Write a function to compute the next state (after one update) of the board given its current state.
Follow up:
Could you solve it in-place? Remember that the board needs to be updated at the same time: 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 the border of the array. How would you address these problems?

Credits:Special thanks to @jianchao.li.fighter for adding this problem and creating all test cases.

Hide Company Tags
Dropbox Google Snapchat
Hide Tags
Array
Hide Similar Problems
(M) Set Matrix Zeroes

public class Solution {
    /*To solve it in place, we use 2 bits to store 2 states:

    [2nd bit, 1st bit] = [next state, current state]
    
    - 00  dead (next) <- dead (current)
    - 01  dead (next) <- live (current)  
    - 10  live (next) <- dead (current)  
    - 11  live (next) <- live (current) 
    In the beginning, every cell is either 00 or 01.
    Notice that 1st state is independent of 2nd state.
    Imagine all cells are instantly changing from the 1st to the 2nd state, at the same time.
    Let's count # of neighbors from 1st state and set 2nd state bit.
    Since every 2nd state is by default dead, no need to consider transition 01 -> 00.
    In the end, delete every cell's 1st state by doing >> 1.
    For each cell's 1st bit, check the 8 pixels around itself, and set the cell's 2nd bit.
    
    Transition 01 -> 11: when board == 1 and lives >= 2 && lives <= 3.
    Transition 00 -> 10: when board == 0 and lives == 3.
    To get the current state, simply do
    
    board[i][j] & 1
    To get the next state, simply do
    
    board[i][j] >> 1

    */
    public void gameOfLife(int[][] board) {
        if (board == null || board.length == 0) return;
        int m = board.length, n = board[0].length;
        
        for (int i = 0; i < m; i++) {
            for (int j = 0; j < n; j++) {
                int lives = liveNeighbors(board, m, n, i, j);
                
                // In the beginning, every 2nd bit is 0;
                // So we only need to care about when the 2nd bit will become 1.
                if (board[i][j] == 1 && lives >= 2 && lives <= 3) {
                    board[i][j] = 3; // Make the 2nd bit 1: 01 ---> 11
                }
                if (board[i][j] == 0 && lives == 3) {
                    board[i][j] = 2; // Make the 2nd bit 1:00 --> 10
                }
            }
        }
        
        for (int i = 0; i < m; i++) {
            for (int j = 0; j < n; j++) {
                board[i][j] >>= 1; // Get the 2nd state.
            }
        }
    }
    
    public int liveNeighbors(int[][] board, int m, int n, int i, int j) {
        int lives = 0;
        for (int x = Math.max(i - 1, 0);  x <= Math.min(i+1, m - 1); x++ ) {
            for (int y = Math.max(j - 1, 0);  y <= Math.min(j + 1, n - 1); y++) {
                lives += board[x][y] & 1;
            }
        }
        lives -= board[i][j] & 1;
        return lives;
    }
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • According to the Wikipedia's article: "The Game of Life, ...
    Jeanz阅读 197评论 0 0
  • 题目 According to the Wikipedia's article: "The Game of Lif...
    yxwithu阅读 166评论 0 0
  • 如果一个流浪人来到你家门 请给他一碗水 再给他一双鞋 千万不要问他从哪里来 不要往他的伤口上撒盐 流浪人啊 长着一...
    聪明的大脸阅读 308评论 2 2
  • 今天听同事说他们老家的一个女的,在手机上跟人聊天聊跑了。那个女的在家里带孩子,男人出国打工签的是三年的合同。 男的...
    李冰儿阅读 692评论 0 0
  • 人脑是很有意思的东西。得意的时候,觉得自己是世界之王。可以改变整个世界。而思索的时候,又觉得仿佛一粒尘埃。在宇宙中...
    炬焱阅读 449评论 0 0