Word Search

Problem

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.

Example 1:

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

Example 2:

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

Example 3:

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

Intuition

The problem involves determining whether a given word exists in the provided grid. The word can be constructed from letters of sequentially adjacent cells, where adjacent cells are horizontally or vertically neighboring. Additionally, the same letter cell may not be used more than once. This problem can be solved using a depth-first search (DFS) approach.

Approach

DFS Function:

Implement a DFS function (dfs) that takes three parameters: the current row r, the current column c, and the index i representing the position in the word.
In the base case:
If i is equal to the length of the word, return True (the word has been found).
If the current cell (r, c) is out of bounds or has already been visited or contains a letter different from the corresponding letter in the word, return False.
Mark the current cell as visited by adding (r, c) to the set path.
Recursively call the dfs function for adjacent cells in all four directions (up, down, left, right) with the updated index i.
After the recursive calls, remove (r, c) from the set path to backtrack.
Iterate Over Grid:

Iterate over each cell in the grid and call the dfs function for each cell with the starting index i set to 0.
If the dfs function returns True for any cell, the word exists in the grid, and the function can return True.
Return Result:

If no cell results in a True return from the dfs function, return False, indicating that the word does not exist in the grid.

Complexity

  • Time complexity:

The time complexity is O(M * N * 4^L), where M is the number of rows, N is the number of columns, and L is the length of the word. The factor of 4^L accounts for the branching factor of the DFS.

  • Space complexity:

The space complexity is O(L), where L is the length of the word. This is due to the space required for the recursion stack and the set path used to track visited cells.

Code

class Solution:
    def exist(self, board: List[List[str]], word: str) -> bool:
        rows, cols = len(board), len(board[0])
        path = set()

        def dfs(r, c, i):
            if i == len(word):
                return True
            if (r < 0 or c < 0 or
                r >= rows or c >= cols or
                word[i] != board[r][c] or (r, c) in path):
                return False

            path.add((r, c))
            res = (dfs(r + 1, c, i + 1) or
                    dfs(r - 1, c, i + 1) or
                    dfs(r, c - 1, i + 1) or
                    dfs(r, c + 1, i + 1))
                
            path.remove((r, c))
            return res

        for r in range(rows):
            for c in range(cols):
                if dfs(r, c, 0): return True
        return False

相关推荐

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2024-02-04 10:20:01       91 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2024-02-04 10:20:01       97 阅读
  3. 在Django里面运行非项目文件

    2024-02-04 10:20:01       78 阅读
  4. Python语言-面向对象

    2024-02-04 10:20:01       88 阅读

热门阅读

  1. 蓝桥 第三周 分治 排序

    2024-02-04 10:20:01       55 阅读
  2. 速盾:免备案网站服务器接入cdn有哪些好处

    2024-02-04 10:20:01       43 阅读
  3. ubuntu server 22.04.3 配置 wifi

    2024-02-04 10:20:01       43 阅读
  4. ubuntu22.04@laptop OpenCV安装

    2024-02-04 10:20:01       50 阅读
  5. Day11代码随想录

    2024-02-04 10:20:01       55 阅读
  6. Linux 命令行速查表

    2024-02-04 10:20:01       58 阅读
  7. Oracle出现超出打开游标最大数的解决方法

    2024-02-04 10:20:01       53 阅读