gpt4 book ai didi

algorithm - 使用 BFS 找到从 s 到 t 的最昂贵路径

转载 作者:塔克拉玛干 更新时间:2023-11-03 04:59:18 25 4
gpt4 key购买 nike

在给定的图 G=(V,E) 中,每条边都有一个成本 c(e)。我们有一个起始节点 s 和一个目标节点 t。我们如何使用以下 BFS 算法找到从 s 到 t 的边数最少的最昂贵路径?

BFS(G,s):
foreach v in V do
color[v] <- white; parent[v] <- nil
color[s] <- grey; parent[s] <- s
BFS-Visit(s)

BFS-Visit(u):
Q <- empty queue
Enqueue(Q,u)
while Q != empty do
v <- Dequeue(Q)
foreach w in Adj[v] do
if color[w] white then
color[w] <- grey
parent[w] <- v
Enqueue(Q,w)
color[v] <- black

最佳答案

BFS 的特性是距离源 d 的所有节点的集合被认为恰好在距离 d+1 的所有节点的集合之前。因此,即使节点为灰色,您也必须更新“最昂贵的路径”:

BFS(G,s):
foreach v in V do
color[v] <- white; parent[v] <- nil; mesp[v] <- -inf
# mesp[v]: most expensive shortest path from s to v
color[s] <- grey; parent[s] <- s; mesp[s] <- 0
BFS-Visit(s)

BFS-Visit(u):
Q <- empty queue
Enqueue(Q,u)
while Q = empty do
v <- Dequeue(Q)
foreach w in Adj[v] do
if color[w] != black and mesp[v] + c(v, w) > mesp[w]:
color[w] <- grey
mesp[w] = mesp[v] + c(v, w)
parent[w] <- v
Enqueue(Q,w)
color[v] <- black

关于algorithm - 使用 BFS 找到从 s 到 t 的最昂贵路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39441101/

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