-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathWordSearchBoard.cpp
70 lines (56 loc) · 1.47 KB
/
WordSearchBoard.cpp
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/*
Given a 2D board and a word, find if the word exists in the grid.
The word can be constructed from letters of sequentially adjacent cell, where "adjacent" cells are those horizontally or vertically neighboring. The cell itself does not count as an adjacent cell.
The same letter cell may be used more than once.
Example :
Given board =
[
["ABCE"],
["SFCS"],
["ADEE"]
]
word = "ABCCED", -> returns 1,
word = "SEE", -> returns 1,
word = "ABCB", -> returns 1,
word = "ABFSAB" -> returns 1
word = "ABCD" -> returns 0
Note that 1 corresponds to true, and 0 corresponds to false.
LINK: https://www.interviewbit.com/problems/word-search-board/
*/
int n,m,ns;
int X[] = {0, 0, 1, -1};
int Y[] = {1, -1, 0, 0};
bool dfs(int x, int y, vector<string> &A, string B, int ind)
{
if(ind == ns)
return true;
for(int i=0;i<4;i++)
{
int newx = x+X[i];
int newy = y+Y[i];
if(newx>=0 && newx<n && newy>=0 && newy<m && A[newx][newy]==B[ind])
{
if(dfs(newx,newy,A,B,ind+1))
return true;
}
}
return false;
}
int Solution::exist(vector<string> &A, string B)
{
n = A.size();
m = A[0].size();
ns = B.length();
if(ns == 0)
return 1;
bool ans = false;
for(int i=0;i<n;i++)
for(int j=0;j<m;j++)
if(A[i][j] == B[0])
{
ans |= dfs(i,j,A,B,1);
if(ans)
return 1;
}
return 0;
}