289. Game of Life

QUESTION:

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):

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. 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?

EXPLANATION:

只要模拟这个过程即可.

SOLUTION:

class Solution {
    func gameOfLife(_ board: inout [[Int]]) {
        var result: [[Int]] = Array(repeating: Array(repeating: 0, count: board[0].count), count: board.count)
        for i in board.indices {
            for j in board[i].indices {
                result[i][j] = gameOfLifeHelper(&board, i: i, j: j)
            }
        }
        board = result
    }

    func gameOfLifeHelper(_ board: inout [[Int]], i: Int, j: Int) -> Int {
        var count = 0
        func getCount(i: Int, j: Int) -> Int {
            if board[i][j] == 1 {
                return 1
            }
            return 0
        }
        
        if i - 1 >= 0 {
            count += getCount(i: i-1, j: j)
            if j - 1 >= 0 {
                count += getCount(i: i-1, j: j-1)
            }
            if j + 1 <= board[i].count - 1 {
                count += getCount(i: i-1, j: j+1)
            }
        }
        if i+1 <= board.count-1 {
            count += getCount(i: i+1, j: j)
            if j - 1 >= 0 {
                count += getCount(i: i+1, j: j-1)
            }
            if j + 1 <= board[i].count - 1 {
                count += getCount(i: i+1, j: j+1)
            }
        }
        if j - 1 >= 0 {
            count += getCount(i: i, j: j-1)
        }
        if j + 1 <= board[i].count - 1 {
            count += getCount(i: i, j: j+1)
        }
        if board[i][j] == 1 {
            if count == 2 || count == 3 {
                return 1
            } else if count > 3 {
                return 0
            } else if count < 2 {
                return 0
            }
        } else {
            if count == 3 {
                return 1
            }
        }
        return 0
    }
}