LeetCode 289. Game of Life

Post by ailswan Dec. 13, 2023

289. Game of Life

Problem Statement

link: LeetCode.cn LeetCode

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:

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]]

Input: board = [[1,1],[1,0]] Output: [[1,1],[1,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?

Solution Approach

The problem can be solved in-place by simultaneously updating each cell based on the given rules of the Game of Life.

Algorithm

  1. Initialize the necessary variables such as the dimensions of the board (m rows and n columns), and define the eight possible neighbors of each cell.
  2. Create a deep copy of the original board to avoid conflicts during updates.
  3. Iterate through each cell in the board.
  4. Update the original board with the calculated next state for each cell.

Implement

    class Solution:
  def gameOfLife(self, board: List[List[int]]) -> None:
      m, n = len(board), len(board[0])
      neighbors = [(-1,0),(1,0),(0,-1),(0,1),(-1,-1),(1,1),(-1,1),(1,-1)]
      
      copy_board = depcopy(board)
      for row in range(m):
        for col in range(n):
          live_neighbors = 0
          for neighbor in neighbors:
            r = (row + neighbor[0])
            c = (col + neighbor[1])

            if 0 <= r < m and 0 <= c < n and copy_board[r][c] == 1:
              live_neighbors += 1
        
          if copy_board[row][col] == 1 and (live_neighbors < 2 or live_neighbors > 3):
            board[row][col] = 0
          if copy_board[row][col] == 0 and live_neighbors == 3:
            board[row][col] = 1