题目链接

LeetCode

题目描述

给定一个 m x n 二维字符网格 board 和一个字符串单词 word 。如果 word 存在于网格中,返回 true ;否则,返回 false

单词必须按照字母顺序,通过相邻的单元格内的字母构成,其中 “相邻” 单元格是那些水平相邻或垂直相邻的单元格。同一个单元格内的字母不允许被重复使用。

示例 1:

79. 单词搜索 - 图1

输入: board = [[“A”,”B”,”C”,”E”],[“S”,”F”,”C”,”S”],[“A”,”D”,”E”,”E”]], word = “ABCCED”
输出: true

示例 2:

79. 单词搜索 - 图2

输入: board = [[“A”,”B”,”C”,”E”],[“S”,”F”,”C”,”S”],[“A”,”D”,”E”,”E”]], word = “SEE”
输出: true

示例 3:

79. 单词搜索 - 图3

输入: board = [[“A”,”B”,”C”,”E”],[“S”,”F”,”C”,”S”],[“A”,”D”,”E”,”E”]], word = “ABCB”
输出: false

提示:

  • m == board.length
  • n = board[i].length
  • 1 <= m, n <= 6
  • 1 <= word.length <= 15
  • boardword 仅由大小写英文字母组成

进阶: 你可以使用搜索剪枝的技术来优化解决方案,使其在 board 更大的情况下可以更快解决问题?

解题思路

方法一:回溯+剪枝

  1. class Solution {
  2. public:
  3. bool exist(vector<vector<char>>& board, string word) {
  4. this->mat = board;
  5. this->w = word;
  6. int m = board.size();
  7. int n = board[0].size();
  8. this->len = word.length();
  9. bool res = false;
  10. for(int i = 0;i<m;i++){
  11. for(int j = 0;j<n;j++){
  12. if(board[i][j]==word[0]){
  13. res = dfs(i,j,0);
  14. if(res){
  15. return res;
  16. }
  17. }
  18. }
  19. }
  20. return false;
  21. }
  22. private:
  23. vector<vector<char>> mat;
  24. string w;
  25. int len = 0;
  26. bool dfs(int x,int y,int pos){
  27. if(pos+1==len&&w[pos]==mat[x][y]){
  28. return true;
  29. }
  30. bool res = false;
  31. if(w[pos]==mat[x][y]){
  32. mat[x][y] = '#';
  33. if(x>0){
  34. res = dfs(x-1,y,pos+1);
  35. }
  36. if(res){
  37. return true;
  38. }
  39. if(x+1<mat.size()){
  40. res = dfs(x+1,y,pos+1);
  41. }
  42. if(res){
  43. return true;
  44. }
  45. if(y>0){
  46. res = dfs(x,y-1,pos+1);
  47. }
  48. if(res){
  49. return true;
  50. }
  51. if(y+1<mat[0].size()){
  52. res = dfs(x,y+1,pos+1);
  53. }
  54. if(res){
  55. return true;
  56. }
  57. mat[x][y] = w[pos];
  58. }
  59. return res;
  60. }
  61. };