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;
    }
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請(qǐng)結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡(jiǎn)書(shū)系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

  • According to the Wikipedia's article: "The Game of Life, ...
    Jeanz閱讀 217評(píng)論 0 0
  • 題目 According to the Wikipedia's article: "The Game of Lif...
    yxwithu閱讀 184評(píng)論 0 0
  • 如果一個(gè)流浪人來(lái)到你家門(mén) 請(qǐng)給他一碗水 再給他一雙鞋 千萬(wàn)不要問(wèn)他從哪里來(lái) 不要往他的傷口上撒鹽 流浪人啊 長(zhǎng)著一...
    聰明的大臉閱讀 387評(píng)論 2 2
  • 今天聽(tīng)同事說(shuō)他們老家的一個(gè)女的,在手機(jī)上跟人聊天聊跑了。那個(gè)女的在家里帶孩子,男人出國(guó)打工簽的是三年的合同。 男的...
    李冰兒閱讀 798評(píng)論 0 0
  • 人腦是很有意思的東西。得意的時(shí)候,覺(jué)得自己是世界之王??梢愿淖冋麄€(gè)世界。而思索的時(shí)候,又覺(jué)得仿佛一粒塵埃。在宇宙中...
    炬焱閱讀 492評(píng)論 0 0

友情鏈接更多精彩內(nèi)容