




版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領(lǐng)
文檔簡介
1、Algorithms Design and Analysis:Approximation AlgorithmsProf. Dr. Jinxing XieDept. of Mathematical SciencesTsinghua University, Beijing 100084, China Voice:(86-10)62787812 Fax:(86-10)62785847 pleteness is a worst-case statement. If the hard cases are rare, heuristics might work well in practice. e.g.
2、 the Simplex algorithm for solving Linear Programs The general problem is plete, but we might be confronted with a subcase that is actually polynomially solvable. e.g. 2-CNF-SAT can be solved efficiently We must only solve small instances of the problem and then exponential running time can be toler
3、ated Constants matter. e.g. 3-CNF-SAT can naively be solved in time O(2n), but it can also be solved in time 1.23883m In practice it is often sufficient to find a “good” near-optimal solution, so we can try approximation algorithmsHow to deal with NPC problems?Approximation algorithmAn algorithm tha
4、t returns near-optimal solutions is called approximation algorithm.An algorithm for a problem has an approximation ratio (or factor) of (n) if for any input of size n, the cost C of the solution produced by the algorithm is within a factor of (n) of the cost C* of an optimal solution: max(C/C*, C*/C
5、) =1)And this algorithm is called a (n)-approximation algorithm.Note: We call an algorithm a heuristic if we cannot prove that it is fast or correct. (e.g. metaheuristics Genetic algorithm etc.)Approximation schemeAn approximation scheme for an optimization problem is an approximation algorithm that
6、 takes as input not only an instance of the problem, but also a value 0Such that for any fixed 0, the scheme is a (1+)-approximation algorithm.A polynomial time approximation scheme (PTAS) is an approximation scheme with running time polynomial in the size n of its input instance, for any fixed 0.A
7、fully polynomial time approximation scheme (FPTAS) is an approximation scheme with running time polynomial both in (1/) and the size n of its input instance.Minimum Vertex Cover problemA vertex cover of an undirected graph G=(V,E) is a subset V of vertices such that if (u,v) E, then u V or v V (or b
8、oth).Basic idea:As long as there are nodes, choose an arbitrary edge (u,v), add u and v to the vertex cover and remove all edges incident to u and vAPPROX-VERTEX-COVER is a polynomial time 2-approximation algorithmLet A be the set of edges chosen by the algorithm (in Line 4),Then |C|=2|A|An optimal
9、cover C* must include at least one end point of each edge in A, thus |C*| = |A|Therefore |C| =2|A| = 2|C*|(Note: A is actually a maximal matching of G)RemarksTSP with triangle inequalitytriangle inequality: (e.g. Euclidean distance c on graph G=(V,E) for all u, v, w in V, c(u,w) = c(u,v) + c(v,w)Bas
10、ic idea: weight of MST is a lower bound on the length of the optimal tour use MST to create a tour O(V2)APPROX-TSP-TOUR is a polynomial time 2-approximation algorithmLet H* be an optimal tour, Then c(T) = c(H*)Let W be the walk, it traverses every edge of T exactly twice,Thus c(W) = 2c(T)Unfortunate
11、ly, W is generally not a tour. However, deleting one of the two visits to a vertex will not increase the total cost due to the triangle-inequality property!Finally, c(H) = c(W) = 2c(T) =1, there is no polynomial time -approximation algorithm for general TSP.By contradiction. (WLOG, assume =1 is an i
12、nteger)Suppose A is a -approximation algorithm for general TSP Then we can use it to solve HAMILTONIAN CYCLE problem.Given G=(V,E), an instance of HAMILTONIAN CYCLE problem, Let G=(V,E) be the complete graph on VGeneral TSPIf G has a hamiltonian cycle H, then (G,c) has a tour of cost |V|.If G has no
13、 hamiltonian cycle, then any tour in (G,c) has a cost of at least (|V|+1) + (|V|-1) = |V|+|V| |V|Thus:If G has a hamiltonian cycle H, then using A to (G, c) will return a tour with cost of |V|.If G has no hamiltonian cycle, then using A to (G, c) will return a tour with cost at least |V|.So A can so
14、lve hamiltonian cycle problem!The set-covering problemIt is a generalization of vertex-covering problem, thus it is NP-hard (NPO: NP Optimization)A greedy approximation algorithmComplexityNumber of loops: at most min(|X|, |F|)In each loop: at most O(|X| |F|)Totally: O(|X| |F| min(|X|, |F|) polynomia
15、lHarmonic number and the Theorem The dth harmonic number is Hd=H(d)= (H0=H(0)=0) H3= 11/6 2 Note: When k is small, the algorithm is not too bad, e.g. H3= 11/6 2 Approx-SC is a polynomial-time (1+ln|X|)-approximation algorithm ProofLemmaRandomizationA randomized algorithm for a problem has an approxi
16、mation ratio of (n) if for any input of size n, the expected cost C of the solution produced by the algorithm is within a factor of (n) of the cost C* of an optimal solution: max(C/C*, C*/C) =1)And this algorithm is called a randomized (n)-approximation algorithm.Example - MAX-3-CNF satisfiability p
17、roblem:Similar to 3-CNF-SAT, but the goal is to find the assignment of the variables that maximizes the number of clauses evaluating to 1RandomizationTheorem:The randomized algorithm that independently sets each variable to 1 with probability and to 0 with probability is a randomized 8/7-approximati
18、on algorithm to MAX-3-CNFProof. Suppose there are totally m clauses.Prclause i is unsatisfied = 1/2*1/2*1/2=1/8Prclause i is satisfied = 1-1/8=7/8Thus the expected number of satisfied clauses = 7m/8 (=C)Optimal solution can at most satisfy all m clauses: C*=mThus C*/C =1 for all (u,v) in E, x(v) = 0
19、 or 1 for all v in V Lower bound: Relaxation to 0 = x(v) =1The algorithm Approximation ratio = 2 Let C* be the optimal cover, z* be the value of the optimal solution to the linear programming then z* = w(C*) C is obviously a vertex cover, andThus w(C) = 2w(C*)The subset-sum problem Optimization vers
20、ion: . The sum is as large as possible but = tTrimming a list Remove from a list the element “close enough” to another numberL=: a sorted list (from small to big) 01(m), m=|L|The algorithm 01Example S= , t=308 and =0.4L0=L1=L2= (before TRIM) L2= (after TRIM)L3=(before TRIM) L3=(after TRIM) L3= (remove “l(fā)arger” number)L4= (before TRIM) L4=(after TRIM) L4=(remove “l(fā)arger” number)z*=302 = 101+201Optimal: 307=104+102+101Actually within 2%Proof Denote Pi= Pi-1 (Pi-1+xi) , the optimal solution y* PnThen Li is an ordered subset of Pi , z* = y* We need to show y*/z*
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 2025年被動式超低能耗建筑技術(shù)原理深度解析與應(yīng)用案例報告
- 智慧醫(yī)療背景下日間手術(shù)中心標(biāo)準(zhǔn)化建設(shè)的創(chuàng)新實踐
- 全球冥想市場分析與預(yù)測報告
- 文旅產(chǎn)業(yè)發(fā)展關(guān)鍵階段投資策略調(diào)整建議
- 高熵合金涂層行業(yè)的市場機遇與風(fēng)險評估
- 2025至2030戶外表演服裝行業(yè)產(chǎn)業(yè)運行態(tài)勢及投資規(guī)劃深度研究報告
- 淺談背景音樂在小學(xué)英語課堂教學(xué)中的應(yīng)用
- PBL對提高企業(yè)培訓(xùn)效率的影響研究
- 農(nóng)村幼兒園課程游戲化推進對策探究
- 家電行業(yè)需求報告及增長預(yù)測
- 路面銑刨工入場安全教育試卷(含答案)
- 2025長沙市輔警考試試卷真題帶答案
- 胸痛健康教育課件
- 2025年合肥城建發(fā)展股份有限公司及所屬子公司招聘17人(二批次)筆試參考題庫附帶答案詳解
- 2025年項目終止協(xié)議
- 醫(yī)院員工手冊管理制度
- 2024大華網(wǎng)絡(luò)攝像機使用說明書全集
- 泉州水務(wù)集團有限公司招聘考試真題2024
- 東航客運崗位面試題目及答案
- T/CNFAGS 15-2024綠色合成氨分級標(biāo)準(zhǔn)(試行)
- 污水處理員技能培訓(xùn)課件
評論
0/150
提交評論