我正在解决与广度优先搜索相关的问题。我解决了这个问题,但我的解决方案花了最长的时间来解决(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
此处 g 和 s 是邻接列表(在python的情况下为dict)和分别启动Node。
我从MIT算法课程中学到了这种方法。
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)
答案 0 :(得分:2)
性能方面的主要问题似乎是,这是执行完整图搜索并返回所有节点与根节点相比的距离。
这远不止手头的问题。
在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
答案 1 :(得分:0)
有一些建议来实现一个不错的bfs。在二维问题中,你可以通过同时从两端搜索来节省一半的时间。
但是当谈到计时的粗略优化时,你总是去查找表。在你的情况下,你有很好的约束:64个位置开始,64个位置完成。这是一个非常小的4096整数查找表。因此,在帮助程序中使用任何低效算法来填充查找表并将其打印出来。将该表格粘贴到竞赛代码的源代码中。