Reference: LeetCode
Difficulty: Medium

Problem

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:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
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?

Analysis

Extra Space

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// out-place
public void gameOfLife(int[][] board) {
if (board == null || board.length == 0) {
return;
}
int m = board.length;
int n = board[0].length;
int[][] origin = new int[m][n];
// copy
for (int i = 0; i < m; ++i) {
for (int j = 0; j < n; ++j) {
origin[i][j] = board[i][j];
}
}
// game of life
for (int i = 0; i < m; ++i) {
for (int j = 0; j < n; ++j) {
board[i][j] = liveOrDie(origin, i, j);
}
}
}

int[][] directions = { {-1, -1}, {-1, 0}, {-1, 1}, {0, -1}, {0, 1}, {1, -1}, {1, 0}, {1, 1} };

// If a cell becomes live or dead. live: 1, dead: 0
private int liveOrDie(int[][] origin, int i, int j) {
int m = origin.length;
int n = origin[0].length;
int liveCount = 0;
for (int[] dir : directions) {
int x = i + dir[0];
int y = j + dir[1];
if (x >= 0 && x < m && y >= 0 && y < n) {
if (origin[x][y] == 1) ++liveCount;
}
}
// live cell
if (origin[i][j] == 1 && (liveCount == 2 || liveCount == 3)) return 1;
// dead cell
if (origin[i][j] == 0 && liveCount == 3) return 1;
return 0;
}

Time: $O(MN)$
Space: $O(MN)$

In-Place

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
public void gameOfLife(int[][] board) {
if (board == null || board.length == 0) {
return;
}
int m = board.length;
int n = board[0].length;
// game of life
for (int i = 0; i < m; ++i) {
for (int j = 0; j < n; ++j) {
board[i][j] = liveOrDie(board, i, j);
}
}
// reset to 0/1
for (int i = 0; i < m; ++i) {
for (int j = 0; j < n; ++j) {
board[i][j] = (board[i][j] == 12 || board[i][j] == 14) ? 1 : 0;
}
}
}

int[][] directions = { {-1, -1}, {-1, 0}, {-1, 1}, {0, -1}, {0, 1}, {1, -1}, {1, 0}, {1, 1} };

// old: 0, new: 0 --> 11
// old: 0, new: 1 --> 12
// old: 1, new: 0 --> 13
// old: 1, new: 1 --> 14

// If a cell becomes live or dead. live: 1, dead: 0
private int liveOrDie(int[][] board, int i, int j) {
int m = board.length;
int n = board[0].length;
int liveCount = 0;
for (int[] dir : directions) {
int x = i + dir[0];
int y = j + dir[1];
if (x >= 0 && x < m && y >= 0 && y < n) {
int oldVal = board[x][y];
if (oldVal == 1 || oldVal == 13 || oldVal == 14) ++liveCount;
}
}
// live cell
if (board[i][j] == 1) {
if (liveCount == 2 || liveCount == 3) return 14; // live
else return 13; // dead
}
// dead cell
if (board[i][j] == 0) {
if (liveCount == 3) return 12; // live
else return 11; // dead
}
throw new IllegalArgumentException();
}

Time:
Space: