LeetCode BFS 算法题专项整理

参考:https://labuladong.github.io/algo/1/6/

LeetCode 111

  1. 二叉树的最小深度

这个 BFS 比较简单。

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
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, val=0, left=None, right=None):
# self.val = val
# self.left = left
# self.right = right
class Solution:
def minDepth(self, root: TreeNode) -> int:
if not root:
return 0
# BFS
queue = []
resDepth = 0
queue.append(root)
resDepth += 1
while queue:
size = len(queue)
for i in range(size):
curNode = queue.pop(0)
if (not curNode.left and not curNode.right):
return resDepth
if (curNode.left):
queue.append(curNode.left)
if (curNode.right):
queue.append(curNode.right)
resDepth += 1
return resDepth

LeetCode 752

  1. 打开转盘锁

这题如果理解了 BFS 的话,白板编程应该也不是很难。

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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
'''
AC。修复了逻辑 bug 之后。
'''

from typing import List


class Solution:
def openLock(self, deadends: List[str], target: str) -> int:
def upOneBitOfLock(s: str, n: int):
if s[n] == '9':
res = s[0:n] + '0' + s[n + 1:]
else:
res = s[0:n] + str(int(s[n]) + 1) + s[n + 1:]
return res

def downOneBitOfLock(s: str, n: int):
if s[n] == '0':
res = s[0:n] + '9' + s[n + 1:]
else:
res = s[0:n] + str(int(s[n]) - 1) + s[n + 1:]
return res

deadends = set(deadends)
if '0000' in deadends:
return -1
if '0000' == target:
return 0
queue = []
visited = set()
resSteps = 0
queue.append('0000')
while(queue):
size = len(queue)
for _ in range(size):
curNode = queue.pop(0)
for j in range(4):
upNode = upOneBitOfLock(curNode, j)
if (upNode in deadends) or (upNode in visited):
continue
if upNode == target:
resSteps += 1
return resSteps
queue.append(upNode)
visited.add(upNode)
# 注意这里的向下拨动要和上面的向上波动给分离开,不能放在一个循环里面,
# 不然,continue 会导致没有考虑所有的情况
for j in range(4):
downNode = downOneBitOfLock(curNode, j)
if (downNode in deadends) or (downNode in visited):
continue
if downNode == target:
resSteps += 1
return resSteps
queue.append(downNode)
visited.add(downNode)
resSteps += 1

return -1


if __name__ == '__main__':
solu = Solution()
deadends = ["8430", "5911", "4486", "7174", "9772", "0731", "9550", "3449",
"4437", "3837", "1870", "5798", "9583", "9512", "5686", "5131",
"0736", "3051", "2141", "2989", "6368", "2004", "1012", "8736",
"0363", "3589", "8568", "6457", "3467", "1967", "1055", "6637",
"1951", "0575", "4603", "2606", "0710", "4169", "7009", "6554",
"6128", "2876", "8151", "4423", "0727", "8130", "3571", "4801",
"8968", "6084", "3156", "3087", "0594", "9811", "3902", "4690",
"6468", "2743", "8560", "9064", "4231", "6056", "2551", "8556",
"2541", "5460", "5657", "1151", "5123", "3521", "2200", "9333",
"9685", "4871", "9138", "5807", "2191", "2601", "1792", "3470",
"9096", "0185", "0367", "6862", "1757", "6904", "4485", "7973",
"7201", "2571", "3829", "0868", "4632", "6975", "2026", "3463",
"2341", "4647", "3680", "3282", "3761", "4410", "3397", "3357",
"4038", "6505", "1655", "3812", "3558", "4759", "1112", "8836",
"5348", "9113", "1627", "3249", "0537", "4227", "7952", "8855",
"3592", "2054", "3175", "6665", "4088", "9959", "3809", "7379",
"6949", "8063", "3686", "8078", "0925", "5167", "2075", "4665",
"2628", "8242", "9831", "1397", "5547", "9449", "6512", "6083",
"9682", "2215", "3236", "2457", "6211", "5536", "8674", "2647",
"9752", "5433", "0186", "5904", "1526", "5347", "1387", "3153",
"1353", "6069", "9995", "9496", "0003", "3400", "1692", "6870",
"4445", "3063", "0708", "3278", "6961", "3063", "0249", "0375",
"1763", "1804", "4695", "6493", "7573", "9977", "1108", "0856",
"5631", "4799", "4164", "0844", "2600", "1785", "1587", "4510",
"9012", "7497", "4923", "2560", "0338", "3839", "5624", "1980",
"1514", "4634", "2855", "7012", "3626", "7032", "6145", "5663",
"4395", "0724", "4711", "1573", "6904", "8100", "2649", "3890",
"8110", "8067", "1460", "0186", "6098", "2459", "6991", "9372",
"8539", "8418", "7944", "0499", "9276", "1525", "1281", "8738",
"5054", "7869", "6599", "8018", "7530", "2327", "3681", "5248",
"4291", "7300", "8854", "2591", "8744", "3052", "6369", "3669",
"8501", "8455", "5726", "1211", "8793", "6889", "9315", "0738",
"6805", "5980", "7485", "2333", "0140", "4708", "9558", "9026",
"4349", "5978", "4989", "5238", "3217", "5938", "9660", "5858",
"2118", "7657", "5896", "3195", "8997", "1688", "2863", "9356",
"4208", "5438", "2642", "4138", "7466", "6154", "0926", "2556",
"9574", "4497", "9633", "0585", "1390", "5093", "3047", "0430",
"7482", "0750", "6229", "8714", "4765", "0941", "1780", "6262",
"0925", "5631", "9167", "0885", "7713", "5576", "3775", "9652",
"0733", "7467", "5301", "9365", "7978", "4736", "3309", "6965",
"4703", "5897", "8460", "9619", "0572", "6297", "7701", "7554",
"8669", "5426", "6474", "5540", "5038", "3880", "1657", "7574",
"1108", "4369", "7782", "9742", "5301", "6984", "3158", "2869",
"0599", "2147", "6962", "9722", "3597", "9015", "3115", "9051",
"8269", "6967", "5392", "4401", "6579", "8997", "8933", "9297",
"0151", "8820", "3297", "6723", "1755", "1163", "8896", "7122",
"4859", "5504", "0857", "4682", "8177", "8702", "9167", "9410",
"0130", "2789", "7492", "5938", "3012", "4137", "3414", "2245",
"4292", "6945", "5446", "6614", "2977", "8640", "9242", "7603",
"8349", "9420", "0538", "4222", "0599", "8459", "8738", "4764",
"6717", "7575", "5965", "9816", "9975", "4994", "2612", "0344",
"6450", "9088", "4898", "6379", "4127", "1574", "9044", "0434",
"5928", "6679", "1753", "8940", "7563", "0545", "4575", "6407",
"6213", "8327", "3978", "9187", "2996", "1956", "8819", "9591",
"7802", "4747", "9094", "0179", "0806", "2509", "4026", "4850",
"2495", "3945", "4994", "5971", "3401", "0218", "6584", "7688",
"6138", "7047", "9456", "0173", "1406", "1564", "3055", "8725",
"4835", "4737", "6279", "5291", "0145", "0002", "1263", "9518",
"1251", "8224", "6779", "4113", "8680", "2946", "1685", "2057",
"9520", "4099", "7785", "1134", "2152", "4719", "6038", "1599",
"6750", "9273", "7755", "3134", "2345", "8208", "5750", "5850",
"2019", "0350", "9013", "6911", "6095", "6843", "3157", "9049",
"0801", "2739", "9691", "3511"]
target = "2248"
print(solu.openLock(deadends, target))


版权声明: 本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处!