forked from doocs/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolution.py
27 lines (27 loc) · 960 Bytes
/
Solution.py
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
class Solution:
def extractMantra(self, matrix: List[str], mantra: str) -> int:
m, n = len(matrix), len(matrix[0])
q = deque([(0, 0, 0)])
vis = {q[0]}
dirs = (-1, 0, 1, 0, -1)
ans = 0
while q:
for _ in range(len(q)):
i, j, k = q.popleft()
if k == len(mantra):
return ans
if matrix[i][j] == mantra[k]:
t = (i, j, k + 1)
if t not in vis:
vis.add(t)
q.append(t)
else:
for a, b in pairwise(dirs):
x, y = i + a, j + b
if 0 <= x < m and 0 <= y < n:
t = (x, y, k)
if t not in vis:
vis.add(t)
q.append(t)
ans += 1
return -1