gpt4 book ai didi

python - python中的广度优先搜索优化

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:54:55 24 4
gpt4 key购买 nike

我正在解决与广度优先搜索相关的问题。我解决了这个问题,但我的解决方案花费了最长的时间来解决(0.12 与其他人完成的 0.01 和 0.02 相比)。问题是图上的简单 BFS。

这是我实现 BFS 的方式:

def bfs1(g, s):
parent = {s: None}
level = {s: 0}
frontier = [s]
ctr = 1
while frontier:
next = []
for i in frontier:
for j in g[i]:
if j not in parent:
parent[j] = i
level[j] = ctr
next.append(j)
frontier = next
ctr += 1
return level

这里的 gs 分别是邻接表(python 的字典)和起始节点。

我从麻省理工学院的算法类(class)中学到了这种方法。

Here是我正在解决的问题。

下面是我提交的完整解决方案

Here d is the graph which I pre-generated 


d={'f1': ['d2', 'e3', 'h2', 'g3'], 'f2': ['d1', 'd3', 'e4', 'h1', 'h3', 'g4'], 'f3': ['d2', 'd4', 'e1', 'e5', 'h2', 'h4', 'g1', 'g5'], 'f4': ['d3', 'd5', 'e2', 'e6', 'h3', 'h5', 'g2', 'g6'], 'd8': ['b7', 'c6', 'f7', 'e6'], 'f6': ['d5', 'd7', 'e4', 'e8', 'h5', 'h7', 'g4', 'g8'], 'f7': ['d6', 'd8', 'e5', 'h6', 'h8', 'g5'], 'f8': ['d7', 'e6', 'h7', 'g6'], 'h3': ['f2', 'f4', 'g1', 'g5'], 'h1': ['f2', 'g3'], 'h6': ['f5', 'f7', 'g4', 'g8'], 'h7': ['f6', 'f8', 'g5'], 'h4': ['f3', 'f5', 'g2', 'g6'], 'h5': ['f4', 'f6', 'g3', 'g7'], 'b4': ['a2', 'a6', 'd3', 'd5', 'c2', 'c6'], 'b5': ['a3', 'a7', 'd4', 'd6', 'c3', 'c7'], 'b6': ['a4', 'a8', 'd5', 'd7', 'c4', 'c8'], 'b7': ['a5', 'd6', 'd8', 'c5'], 'b1': ['a3', 'd2', 'c3'], 'b2': ['a4', 'd1', 'd3', 'c4'], 'b3': ['a1', 'a5', 'd2', 'd4', 'c1', 'c5'], 'd6': ['b5', 'b7', 'c4', 'c8', 'f5', 'f7', 'e4', 'e8'], 'd7': ['b6', 'b8', 'c5', 'f6', 'f8', 'e5'], 'd4': ['b3', 'b5', 'c2', 'c6', 'f3', 'f5', 'e2', 'e6'], 'd5': ['b4', 'b6', 'c3', 'c7', 'f4', 'f6', 'e3', 'e7'], 'b8': ['a6', 'd7', 'c6'], 'd3': ['b2', 'b4', 'c1', 'c5', 'f2', 'f4', 'e1', 'e5'], 'd1': ['b2', 'c3', 'f2', 'e3'], 'e1': ['c2', 'd3', 'g2', 'f3'], 'f5': ['d4', 'd6', 'e3', 'e7', 'h4', 'h6', 'g3', 'g7'], 'd2': ['b1', 'b3', 'c4', 'f1', 'f3', 'e4'], 'e5': ['c4', 'c6', 'd3', 'd7', 'g4', 'g6', 'f3', 'f7'], 'h2': ['f1', 'f3', 'g4'], 'e3': ['c2', 'c4', 'd1', 'd5', 'g2', 'g4', 'f1', 'f5'], 'h8': ['f7', 'g6'], 'e2': ['c1', 'c3', 'd4', 'g1', 'g3', 'f4'], 'g7': ['e6', 'e8', 'f5', 'h5'], 'g6': ['e5', 'e7', 'f4', 'f8', 'h4', 'h8'], 'g5': ['e4', 'e6', 'f3', 'f7', 'h3', 'h7'], 'g4': ['e3', 'e5', 'f2', 'f6', 'h2', 'h6'], 'g3': ['e2', 'e4', 'f1', 'f5', 'h1', 'h5'], 'g2': ['e1', 'e3', 'f4', 'h4'], 'g1': ['e2', 'f3', 'h3'], 'e4': ['c3', 'c5', 'd2', 'd6', 'g3', 'g5', 'f2', 'f6'], 'g8': ['e7', 'f6', 'h6'], 'a1': ['c2', 'b3'], 'a3': ['c2', 'c4', 'b1', 'b5'], 'a2': ['c1', 'c3', 'b4'], 'a5': ['c4', 'c6', 'b3', 'b7'], 'a4': ['c3', 'c5', 'b2', 'b6'], 'a7': ['c6', 'c8', 'b5'], 'a6': ['c5', 'c7', 'b4', 'b8'], 'c3': ['a2', 'a4', 'b1', 'b5', 'e2', 'e4', 'd1', 'd5'], 'c2': ['a1', 'a3', 'b4', 'e1', 'e3', 'd4'], 'c1': ['a2', 'b3', 'e2', 'd3'], 'e6': ['c5', 'c7', 'd4', 'd8', 'g5', 'g7', 'f4', 'f8'], 'c7': ['a6', 'a8', 'b5', 'e6', 'e8', 'd5'], 'c6': ['a5', 'a7', 'b4', 'b8', 'e5', 'e7', 'd4', 'd8'], 'c5': ['a4', 'a6', 'b3', 'b7', 'e4', 'e6', 'd3', 'd7'], 'c4': ['a3', 'a5', 'b2', 'b6', 'e3', 'e5', 'd2', 'd6'], 'e7': ['c6', 'c8', 'd5', 'g6', 'g8', 'f5'], 'a8': ['c7', 'b6'], 'c8': ['a7', 'b6', 'e7', 'd6'], 'e8': ['c7', 'd6', 'g7', 'f6']}


def bfs1(g, s):
# parent = {s: None}
level = {s: 0}
frontier = [s]
ctr = 1
while frontier:
next = []
for i in frontier:
for j in g[i]:
if j not in level:
# parent[j] = i
level[j] = ctr
next.append(j)
frontier = next
ctr += 1
return level



for i in range(int(raw_input())):
x, y = raw_input().split()
print bfs1(d, x).get(y)

最佳答案

性能方面的主要问题似乎是执行全图搜索并返回所有节点与根节点的距离。

这远远超出了手头问题的需要。

specific chess problem you are trying to solve (找出一个骑士从 A 到 B 需要跳多少次),这个函数将找出一个骑士从 A 到每隔一个方格需要跳多少次。

因此,如果输入要求最简单的 A1-B3(答案:1),此函数还将计算 A1-C8、A1-H7...

解决该问题有多种选择。我会完全摆脱 level 变量,并用 yield 代替写入它。所以不是:

level[j] = ctr

这样做:

yield j, ctr

一旦达到想要的结果,这个函数的调用者就可以停止进一步的执行。

此外

我还会重命名所有变量,以便清楚它们是什么。如果代码全是神秘的,您就无法进行有意义的代码分析。

然后,将 parent = {} 替换为 seen = set(),因为您仅使用它来跳过已经看到的节点。

通过这些小改动,您将获得:

def bfs1(adjacency, root):
seen = {root}
frontier = [root]
yield root, 0
next_distance = 1
while frontier:
next_frontier = []
for node in frontier:
for next_node in adjacency[node]:
if next_node in seen:
continue
seen.add(next_node)
yield next_node, next_distance
next_frontier.append(next_node)
frontier = next_frontier
next_distance += 1

然后你需要:

def get_distance_from_a_to_b(a, b, adjacency):
for node, distance in bfs1(adjacency, a):
if node == b:
return distance

关于python - python中的广度优先搜索优化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39804573/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com