289. Game of Life

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 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.
Write a function to compute the next state (after one update) of the board given its current state. The next state is created by applying the above rules simultaneously to every cell in the current state, where births and deaths occur simultaneously.
Example:
Input: 
[
  [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]
]


Follow up:
1. 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.
2. 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?





// not in place , correct answer 

class Solution {
    private static final int[][] dirs = {{0, 1}, {0, -1}, {1, 0}, {-1, 0}, {1, 1}, {1, -1}, {-1, 1}, {-1, -1}};
    public void gameOfLife(int[][] board) {
        int[][] matrix = new int[board.length][board[0].length];
        for(int i = 0; i < board.length; i++){
            for(int j = 0; j < board[0].length; j++){
                matrix[i][j] = board[i][j];
            }
        }
        for(int i = 0; i < board.length; i++){
            for(int j = 0; j < board[0].length; j++){
                int count = 0;
                for(int[] dir : dirs){
                    int x = i + dir[0];
                    int y = j + dir[1];
                    // check if out of boundary 
                    if(x < 0 || y < 0 || x >= board.length || y >= board[0].length) continue;
                    // check live neis 
                    if(matrix[x][y] == 1) count++;
                }
                //  check if the current cell is dead or live 
                if(matrix[i][j] == 1 && count < 2 || count > 3) board[i][j] = 0;
                if(matrix[i][j] == 0 && count == 3) board[i][j] = 1;
            }
        }
    }
}


// in place , wrong answer 

https://leetcode.com/problems/game-of-life/discuss/73366/Clean-O(1)-space-O(mn)-time-Java-Solution




class Solution {
    private static final int[][] dirs = {{0, 1}, {0, -1}, {1, 0}, {-1, 0}, {1, 1}, {1, -1}, {-1, 1}, {-1, -1}};
    public void gameOfLife(int[][] board) {
        
        for(int i = 0; i < board.length; i++){
            for(int j = 0; j < board[0].length; j++){
                int count = 0;
                for(int[] dir : dirs){
                    int x = i + dir[0];
                    int y = j + dir[1];
                    // check if out of boundary 
                    if(x < 0 || y < 0 || x >= board.length || y >= board[0].length) continue;
                    // check live neis 
                    if(board[x][y] == 1 || board[x][y] == 2) count++;
                }
                //  check if the current cell is dead or live 
                if(board[i][j] == 1 && count < 2 || count > 3) board[i][j] = 2; // new dead cell
                if(board[i][j] == 0 && count == 3) board[i][j] = 3; // new live cell
            }
        }
        for(int i = 0; i < board.length; i++){
            for(int j = 0; j < board[0].length; j++){
                board[i][j] %= 2;
            }
        }
    }
}

 

posted on 2018-11-09 07:36  猪猪&#128055;  阅读(110)  评论(0)    收藏  举报

导航