bellman ford 算法 判断是否存在负环
Flyer
- 目錄視圖
- 摘要視圖
- 訂閱
bellman ford 算法
2013-05-25 15:36?11148人閱讀?評論(0)?收藏?舉報 ?分類: ACM(11)?[cpp]?view plaincopy
- 數組Distant[i]記錄從源點s到頂點i的路徑長度,初始化數組Distant[n]為, Distant[s]為0;
- ?
以下操作循環執行至多n-1次,n為頂點數:
對于每一條邊e(u, v),如果Distant[u] + w(u, v) < Distant[v],則另Distant[v] = Distant[u]+w(u, v)。w(u, v)為邊e(u,v)的權值;
若上述操作沒有對Distant進行更新,說明最短路徑已經查找完畢,或者部分點不可達,跳出循環。否則執行下次循環; - 為了檢測圖中是否存在負環路,即權值之和小于0的環路。對于每一條邊e(u, v),如果存在Distant[u] + w(u, v) < Distant[v]的邊,則圖中存在負環路,即是說改圖無法求出單源最短路徑。否則數組Distant[n]中記錄的就是源點s到各頂點的最短路徑長度。
可知,Bellman-Ford算法尋找單源最短路徑的時間復雜度為O(V*E).
首先介紹一下松弛計算。如下圖:
?
松弛計算之前,點B的值是8,但是點A的值加上邊上的權重2,得到5,比點B的值(8)小,所以,點B的值減小為5。這個過程的意義是,找到了一條通向B點更短的路線,且該路線是先經過點A,然后通過權重為2的邊,到達點B。
當然,如果出現一下情況
?
則不會修改點B的值,因為3+4>6。
?
Bellman-Ford算法可以大致分為三個部分
第一,初始化所有點。每一個點保存一個值,表示從原點到達這個點的距離,將原點的值設為0,其它的點的值設為無窮大(表示不可達)。
第二,進行循環,循環下標為從1到n-1(n等于圖中點的個數)。在循環內部,遍歷所有的邊,進行松弛計算。
第三,遍歷途中所有的邊(edge(u,v)),判斷是否存在這樣情況:
d(v) > d (u) + w(u,v)
則返回false,表示途中存在從源點可達的權為負的回路。
?
之所以需要第三部分的原因,是因為,如果存在從源點可達的權為負的回路。則 應為無法收斂而導致不能求出最短路徑。
考慮如下的圖:
?
經過第一次遍歷后,點B的值變為5,點C的值變為8,這時,注意權重為-10的邊,這條邊的存在,導致點A的值變為-2。(8+ -10=-2)
?
?
第二次遍歷后,點B的值變為3,點C變為6,點A變為-4。正是因為有一條負邊在回路中,導致每次遍歷后,各個點的值不斷變小。
?
在回過來看一下bellman-ford算法的第三部分,遍歷所有邊,檢查是否存在d(v) > d (u) + w(u,v)。因為第二部分循環的次數是定長的,所以如果存在無法收斂的情況,則肯定能夠在第三部分中檢查出來。比如
?
此時,點A的值為-2,點B的值為5,邊AB的權重為5,5 > -2 + 5. 檢查出來這條邊沒有收斂。
?
所以,Bellman-Ford算法可以解決圖中有權為負數的邊的單源最短路徑問。
個人感覺算法導論講解很不錯,把這一章貼出來和大家分享:
24.1 The Bellman-Ford algorithm
The?Bellman-Ford algorithm?solves the single-source shortest-paths problem in the general case in which edge weights may be negative. Given a weighted, directed graph?G?= (V,?E) with source?s?and weight function?w?:?E?→?R, the Bellman-Ford algorithm returns a boolean value indicating whether or not there is a negative-weight cycle that is reachable from the source. If there is such a cycle, the algorithm indicates that no solution exists. If there is no such cycle, the algorithm produces the shortest paths and their weights.
The algorithm uses relaxation, progressively decreasing an estimate?d[v] on the weight of a shortest path from the source?s?to each vertex?v?∈?V?until it achieves the actual shortest-path weight?δ(s,?v). The algorithm returns TRUE if and only if the graph contains no negative-weight cycles that are reachable from the source.
BELLMAN-FORD(G, w, s) 1 INITIALIZE-SINGLE-SOURCE(G, s) 2 for i ← 1 to |V[G]| - 1 3 do for each edge (u, v) ∈ E[G] 4 do RELAX(u, v, w) 5 for each edge (u, v) ∈ E[G] 6 do if d[v] > d[u] + w(u, v) 7 then return FALSE 8 return TRUEFigure 24.4?shows the execution of the Bellman-Ford algorithm on a graph with 5 vertices. After initializing the?d?and π values of all vertices in line 1, the algorithm makes |V| – 1 passes over the edges of the graph. Each pass is one iteration of the?for?loop of lines 2-4 and consists of relaxing each edge of the graph once. Figures 24.4(b)-(e) show the state of the algorithm after each of the four passes over the edges. After making |V|- 1 passes, lines 5-8 check for a negative-weight cycle and return the appropriate boolean value. (We’ll see a little later why this check works.)
(單擊圖片可以放大)
Figure 24.4: The execution of the Bellman-Ford algorithm. The source is vertex?s. The?d?values are shown within the vertices, and shaded edges indicate predecessor values: if edge (u, v) is shaded, then π[v] =?u. In this particular example, each pass relaxes the edges in the order (t, x), (t, y), (t, z), (x, t), (y, x), (y, z), (z, x), (z, s), (s, t), (s, y). (a) The situation just before the first pass over the edges. (b)-(e) The situation after each successive pass over the edges. The?d?and π values in part (e) are the final values. The Bellman-Ford algorithm returns TRUE in this example.
The Bellman-Ford algorithm runs in time?O(V E), since the initialization in line 1 takes Θ(V) time, each of the |V| – 1 passes over the edges in lines 2-4 takes Θ(E) time, and the?for?loop of lines 5-7 takes?O(E) time.
以下是Bellman-Ford代碼:
[cpp]?view plaincopy補充:
考慮:為什么要循環V-1次?
答:因為最短路徑肯定是個簡單路徑,不可能包含回路的,
如果包含回路,且回路的權值和為正的,那么去掉這個回路,可以得到更短的路徑
如果回路的權值是負的,那么肯定沒有解了
圖有n個點,又不能有回路
所以最短路徑最多n-1邊
又因為每次循環,至少relax一邊
所以最多n-1次就行了
- 上一篇HDOJ---2036 過山車[匈牙利算法]
- 下一篇ACM進階指南
我的同類文章
ACM(11)- ?Uva 10891 sum 游戲 (及其變型) ;動態規劃2013-05-31閱讀440
- ?二分圖匹配算法總結2013-05-25閱讀839
- ?求最大權二分匹配的KM算法2013-05-25閱讀353
- ?ACM進階指南2013-05-25閱讀629
- ?匈牙利算法 求解 完美的牛欄2013-05-24閱讀1106
- ?歐拉回路2013-05-28閱讀347
- ?二分圖帶權匹配 KM算法與費用流模型建立2013-05-25閱讀650
- ?著名的北郵ACM推薦50題2013-05-25閱讀1702
- ?HDOJ---2036 過山車[匈牙利算法]2013-05-24閱讀601
- ?hdu 1466計算直線的交點數2013-05-03閱讀579
參考知識庫
算法與數據結構知識庫
10401關注|2281收錄
??暫無評論
* 以上用戶言論只代表其個人觀點,不代表CSDN網站的觀點或立場
核心技術類目
全部主題?Hadoop?AWS?移動游戲?Java?Android?iOS?Swift?智能硬件?Docker?OpenStack?VPN?Spark?ERP?IE10Eclipse?CRM?JavaScript?數據庫?Ubuntu?NFC?WAP?jQuery?BI?HTML5?Spring?Apache?.NET?API?HTML?SDK?IISFedora?XML?LBS?Unity?Splashtop?UML?components?Windows Mobile?Rails?QEMU?KDE?Cassandra?CloudStack?FTCcoremail?OPhone?CouchBase?云計算?iOS6?Rackspace?Web App?SpringSide?Maemo?Compuware?大數據?aptech?PerlTornado?Ruby?Hibernate?ThinkPHP?HBase?Pure?Solr?Angular?Cloud Foundry?Redis?Scala?Django?Bootstrap- 個人資料
- ?
Flyer_ ?- 訪問:75445次
- 積分:1071
- 等級:?
- 排名:千里之外
- 原創:24篇
- 轉載:47篇
- 譯文:0篇
- 評論:10條
- 文章搜索
- 文章分類
- unix環境高級編程(18)
- unix網絡編程(4)
- tcp/ip(4)
- unix/linux(10)
- ACM(12)
- 筆試(13)
- 面試(8)
- PAT(4)
- 30天自制操作系統(1)
- 前端(4)
- HTML&CSS(3)
- ML(7)
- 文章存檔
-
- 2016年10月(1)
- 2016年08月(1)
- 2016年07月(6)
- 2015年07月(3)
- 2015年03月(1) 展開
- 閱讀排行
- bellman ford 算法(11142)
- 網絡爬蟲c實現(9636)
- 2014阿里巴巴9月14北京校園招聘筆試及參考答案(3983)
- 兩道操作系統題目---多道程序(3511)
- TCP/IP網絡編程之四書五經(2704)
- 2012九月十月騰訊,網易游戲,百度最新校園招聘筆試題(2619)
- Linux進程地址空間與虛擬內存(2337)
- PAT 1010. 一元多項式求導 (25)(2186)
- PAT 1009. 說反話 (20)(2011)
- 騰訊后臺開發面試題(1764)
- 評論排行
- 2014阿里巴巴9月14北京校園招聘筆試及參考答案(3)
- 網絡爬蟲c實現(2)
- 進程與線程的一個簡單解釋(2)
- 兩道操作系統題目---多道程序(1)
- LINUX/UNIX 文件狀態標志的 與或非 操作(1)
- 編程之美_單鏈表面試題_結合3.4_3.6(1)
- 2014找工作總結-機會往往留給有準備的人(1)
- 著名的北郵ACM推薦50題(0)
- ACM進階指南(0)
- 匈牙利算法 求解 完美的牛欄(0)
- 推薦文章
- * RxJava詳解,由淺入深
- * 倍升工作效率的小策略
- * Android熱修復框架AndFix原理解析及使用
- * “區塊鏈”究竟是什么鬼
- * 架構設計:系統存儲-MySQL主從方案業務連接透明化(中)
- 最新評論
- 兩道操作系統題目---多道程序
Daringoo: 第二題,騰訊給的標準答案是A。在csdn上有自動的測試,我看到了顯示的答案。但是不知怎么得來的。
- ssd8ex1
Tiger_Humour: 樓主你好,請問18到25行代碼里的;這一段代碼是如何確定uri.indexOf('/',8)+1的。...
- 網絡爬蟲c實現
Echo_Wei1991: 正在寫這個的大作業,謝謝啦~太贊
- 進程與線程的一個簡單解釋
qwe8642511: 很好,但是為什么那個鎖上在了門外面。。。。。。出不來了~
- 2014阿里巴巴9月14北京校園招聘筆試及參考答案
weidahou227: @xiaor186:大哥你能好好算算在評論嗎,字母有重復的
- 2014阿里巴巴9月14北京校園招聘筆試及參考答案
xiaor186: 哎,哥啊,看來這參考答案也真的是只能是參考下而已。第一個的答案用腳趾數都不可能是D吧,應該是A
- 編程之美_單鏈表面試題_結合3.4_3.6
歲月小龍: 沒有實現代碼啊
- 網絡爬蟲c實現
歲月小龍: xialai慢慢看
- 進程與線程的一個簡單解釋
歲月小龍: 這個圖文并茂,真是太好了
- 2014找工作總結-機會往往留給有準備的人
Deebug: 謝謝博主的建議。+1
- 鏈接
- Hackbuteer1
結構之法 算法之道
總結
以上是生活随笔為你收集整理的bellman ford 算法 判断是否存在负环的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: range类型
- 下一篇: 迪杰斯特拉算法 两点间最短路径的选择