1937. Maximum Number of Points with Cost

Given an m x n grid of characters board and a string word, return true if word exists in the grid.

The word can be constructed from letters of sequentially adjacent cells, where adjacent cells are horizontally or vertically neighboring. The same letter cell may not be used more than once.

ex1

1
2
3
4
Example 1:

Input: board = [["A","B","C","E"],["S","F","C","S"],["A","D","E","E"]], word = "ABCCED"
Output: true

ex2

1
2
3
4
Example 2:

Input: board = [["A","B","C","E"],["S","F","C","S"],["A","D","E","E"]], word = "SEE"
Output: true
1
2
3
4
Example 3:

Input: board = [["A","B","C","E"],["S","F","C","S"],["A","D","E","E"]], word = "ABCB"
Output: false

Constraints:

  • m == board.length
  • n = board[i].length
  • 1 <= m, n <= 6
  • 1 <= word.length <= 15
  • board and word consists of only lowercase and uppercase English letters.

Follow up: Could you use search pruning to make your solution faster with a larger board?

Constraints:

  • The number of nodes in the tree is in the range [0, 2000].
  • -1000 <= Node.val <= 1000
  • All the values of the tree are unique.

Time Complexity

tc

Solution

 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
class Solution {
    public boolean exist(char[][] board, String word) {
        int n = board.length;
        int m = board[0].length;
        int[][] visited = new int[n][m];
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < m; j++) {
                if (dfs(0, word, board, i, j, visited)) {
                    return true;
                }
            }
        }
        return false;
    }
    
    int[][] DIRS = new int[][] {
        {1, 0},
        {-1, 0},
        {0, 1},
        {0, -1},
    };
        
    boolean dfs(int index, String word, char[][] board, int i, int j, int[][] visited) {
        
        if (index == word.length()) {
            return true;
        }
    
        int n = board.length;
        int m = board[0].length;

        if (i == -1 || i == n || j == -1 || j == m || visited[i][j] == 1 
            || word.charAt(index) != board[i][j]) {
            return false;
        }

        visited[i][j] = 1;

        for (int[] dir: DIRS) {
            if (dfs(index + 1, word, board, i + dir[0], j + dir[1], visited)) {
                return true;
            }
           
        }
        visited[i][j] = 0;
        return false;
    }
}