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]
is0
or1
.
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?
The idea of solving this problem is using different digit to store neighbors’ status, then break down each condition to count. In the last step, we just need to go through the board then calculate the new status based on the original status and neighborhood live counts.
class Solution:
def gameOfLife(self, board: List[List[int]]) -> None:
"""
Do not return anything, modify board in-place instead.
"""
for m in range(len(board)):
for n in range(len(board[m])):
live_count = 0
if (m-1) >= 0 and (n-1) >= 0 and board[m-1][n-1] % 10 == 1:
live_count += 1
if (m-1) >= 0 and board[m-1][n] % 10 == 1:
live_count += 1
if (n-1) >= 0 and board[m][n-1] % 10 == 1:
live_count += 1
if (m-1) >= 0 and (n+1) < len(board[m]) and board[m-1][n+1] % 10 == 1:
live_count += 1
if (m+1) < len(board) and (n-1) >= 0 and board[m+1][n-1] % 10 == 1:
live_count += 1
if (m+1) < len(board) and board[m+1][n] % 10 == 1:
live_count += 1
if (n+1) < len(board[m]) and board[m][n+1] % 10 == 1:
live_count += 1
if (n+1) < len(board[m]) and (m+1) < len(board) and board[m+1][n+1] % 10 == 1:
live_count += 1
board[m][n] += (live_count * 10)
for m in range(len(board)):
for n in range(len(board[m])):
live_neighbors = int(board[m][n]/10)
status = board[m][n] % 10
if status == 0:
if live_neighbors == 3:
board[m][n] = 1
else:
board[m][n] = 0
else:
if live_neighbors >= 2 and live_neighbors < 4:
board[m][n] = 1
else:
board[m][n] = 0
return board
搶先發佈留言