Game of Life - Array - Medium - LeetCode
💻 coding

Game of Life - Array - Medium - LeetCode

2 min read 409 words
2 min read
ShareWhatsAppPost on X
  • 1The Game of Life is a cellular automaton created by John Horton Conway in 1970, involving live and dead cell states.
  • 2Cells interact with eight neighbors based on four rules determining survival, death, and reproduction in the next generation.
  • 3The algorithm computes the next state of the board in-place, ensuring simultaneous updates without using extra space.

AI-generated summary · May not capture all nuances

Key Insight
AskGif

"The Game of Life is a cellular automaton created by John Horton Conway in 1970, involving live and dead cell states."

Game of Life - Array - Medium - LeetCode

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

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

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?

public class Solution {
 const int die = 2;
 const int live = 3;
 public void GameOfLife(int[][] board) {
 int row = board.Length;
 int column = board[0].Length;
 
 for(int i=0;i<row;i++){
 for(int j=0;j<column;j++){
 var countLive = CountLive(board,i,j);
 if(countLive<2 && board[i][j]==1){
 board[i][j]=die;
 }
 else if(board[i][j]==0 && countLive==3){
 board[i][j]=live;
 }
 else if(countLive==2 || countLive==3){
 continue;
 }
 else if(countLive>3 && board[i][j]==1){
 board[i][j]=die;
 }
 }
 }
 
 for(int i=0;i<row;i++){
 for(int j=0;j<column;j++){
 if(board[i][j]==die){
 board[i][j]=0;
 }
 else if(board[i][j]==live){
 board[i][j]=1;
 }
 }
 }
 }
 
 private int CountLive(int[][] board, int i, int j){
 int count = 0;
 var dirx = new int[] {1 ,-1 ,0 , 0 ,1 , 1 ,-1,-1};
 var diry = new int[] {0 , 0 ,1 ,-1 ,1 ,-1 , 1,-1};
 
 for(int k=0;k<dirx.Length;k++){
 int x = i + dirx[k];
 int y = j + diry[k];
 
 if(x>=0 && y>=0 && x<board.Length && y<board[0].Length){
 if(board[x][y]==1 || board[x][y]==die){
 count++;
 }
 }
 }
 
 return count;
 }
}

Time Complexity: O(m*n)

Space Complexity: O(1)

Enjoyed this article?

Share it with someone who'd find it useful.

ShareWhatsAppPost on X

sumitc91

Published on 19 November 2020 · 2 min read · 409 words

Part of AskGif Blog · coding

You might also like