advanced algorithms vii
play

Advanced Algorithms (VII) Shanghai Jiao Tong University Chihao - PowerPoint PPT Presentation

Advanced Algorithms (VII) Shanghai Jiao Tong University Chihao Zhang April 20, 2020 The Probabilistic Method The Probabilistic Method In the class of Combinatorics, you already learnt the probabilistic method The Probabilistic Method In the


  1. A trivial upper bound is OPT( ϕ ) ≤ m So the approximation ratio is 0.5

  2. A trivial upper bound is OPT( ϕ ) ≤ m So the approximation ratio is 0.5 Can we improve it?

  3. A trivial upper bound is OPT( ϕ ) ≤ m So the approximation ratio is 0.5 Can we improve it? In the analysis

  4. A trivial upper bound is OPT( ϕ ) ≤ m So the approximation ratio is 0.5 Can we improve it? In the analysis we use ℓ i ≥ 1

  5. A trivial upper bound is OPT( ϕ ) ≤ m So the approximation ratio is 0.5 Can we improve it? In the analysis we use ℓ i ≥ 1 In fact, we can tweak those singleton clauses

  6. If for some , only one of and is in x ∈ V x x ¯ ϕ

  7. If for some , only one of and is in x ∈ V x x ¯ ϕ • we can toss an unfair coin to increase its chance to be satisfied

  8. If for some , only one of and is in x ∈ V x x ¯ ϕ • we can toss an unfair coin to increase its chance to be satisfied If both and are in , x x ¯ ϕ

  9. If for some , only one of and is in x ∈ V x x ¯ ϕ • we can toss an unfair coin to increase its chance to be satisfied If both and are in , x x ¯ ϕ • only one of them can be satisfied in any assignment!

  10. If for some , only one of and is in x ∈ V x x ¯ ϕ • we can toss an unfair coin to increase its chance to be satisfied If both and are in , x x ¯ ϕ • only one of them can be satisfied in any assignment! Both cases are good for us!

  11. Assume there are more positive singletons than negative singletons in ϕ

  12. Assume there are more positive singletons than negative singletons in ϕ Let S = { x ∈ V : both x and ¯ x are clauses} and t = | S |

  13. Assume there are more positive singletons than negative singletons in ϕ Let S = { x ∈ V : both x and ¯ x are clauses} and t = | S | Then OPT( ϕ ) ≤ m − t

  14. Assume there are more positive singletons than negative singletons in ϕ Let S = { x ∈ V : both x and ¯ x are clauses} and t = | S | Then OPT( ϕ ) ≤ m − t Let be the set of clauses and 𝒟

  15. Assume there are more positive singletons than negative singletons in ϕ Let S = { x ∈ V : both x and ¯ x are clauses} and t = | S | Then OPT( ϕ ) ≤ m − t Let be the set of clauses and 𝒟 𝒟′ = 𝒟 ∖ {singleton x and ¯ x with x ∈ S }

  16. Assume there are more positive singletons than negative singletons in ϕ Let S = { x ∈ V : both x and ¯ x are clauses} and t = | S | Then OPT( ϕ ) ≤ m − t Let be the set of clauses and 𝒟 𝒟′ = 𝒟 ∖ {singleton x and ¯ x with x ∈ S } For all , change it to x ∈ 𝒟′ ¯ x

  17. Assume there are more positive singletons than negative singletons in ϕ Let S = { x ∈ V : both x and ¯ x are clauses} and t = | S | Then OPT( ϕ ) ≤ m − t Let be the set of clauses and 𝒟 𝒟′ = 𝒟 ∖ {singleton x and ¯ x with x ∈ S } Switch the positive and the For all , change it to x ∈ 𝒟′ ¯ x negative for all appearance of x

  18. E [ X ] = t + ∑ Pr[ C is satisfied] ≥ t + ( m − 2 t ) min{ p ,1 − p 2 } C ∈𝒟′

  19. E [ X ] = t + ∑ Pr[ C is satisfied] ≥ t + ( m − 2 t ) min{ p ,1 − p 2 } C ∈𝒟′ The term min{ p ,1 − p 2 } is because the worst case now is either a positive singleton or y ∨ ¯ x ¯ z

  20. E [ X ] = t + ∑ Pr[ C is satisfied] ≥ t + ( m − 2 t ) min{ p ,1 − p 2 } C ∈𝒟′ The term min{ p ,1 − p 2 } is because the worst case now is either a positive singleton or y ∨ ¯ x ¯ z Therefore

  21. E [ X ] = t + ∑ Pr[ C is satisfied] ≥ t + ( m − 2 t ) min{ p ,1 − p 2 } C ∈𝒟′ The term min{ p ,1 − p 2 } is because the worst case now is either a positive singleton or y ∨ ¯ x ¯ z Therefore E [ X ] ≥ t + (OPT − t ) min{ p ,1 − p 2 } ≥ min{ p ,1 − p 2 } ⋅ OPT

  22. E [ X ] = t + ∑ Pr[ C is satisfied] ≥ t + ( m − 2 t ) min{ p ,1 − p 2 } C ∈𝒟′ The term min{ p ,1 − p 2 } is because the worst case now is either a positive singleton or y ∨ ¯ x ¯ z Therefore E [ X ] ≥ t + (OPT − t ) min{ p ,1 − p 2 } ≥ min{ p ,1 − p 2 } ⋅ OPT For p = 1 − p 2 , we have a -approximation 0.618 algorithm

  23. Non-identical Coins via LP

  24. Non-identical Coins via LP The drawback of previous algorithms is that we toss the same coin for each variable

  25. Non-identical Coins via LP The drawback of previous algorithms is that we toss the same coin for each variable The linear programming can helps us to choose coins!

  26. Non-identical Coins via LP The drawback of previous algorithms is that we toss the same coin for each variable The linear programming can helps us to choose coins! We first treat MaxSAT problem as an integer programming

  27. The Integer Program

  28. The Integer Program

  29. The Integer Program - for each clause z j C j

  30. The Integer Program - for each clause z j C j - for each variable y i x i

  31. The Integer Program - for each clause z j C j - for each variable y i x i It is NP-hard to solve the IP

  32. The Linear Program

  33. The Linear Program

  34. The Linear Program - the optimal z * = { z * j } j ∈ [ m ] , y * = { y * i } i ∈ [ n ] solution of the LP

  35. The Linear Program - the optimal z * = { z * j } j ∈ [ m ] , y * = { y * i } i ∈ [ n ] solution of the LP We toss -coin for the variable ! y * x i i

  36. The Linear Program - the optimal z * = { z * j } j ∈ [ m ] , y * = { y * i } i ∈ [ n ] solution of the LP We toss -coin for the variable ! y * x i i m ∑ OPT( ϕ ) ≤ OPT( LP ) = z * j j =1

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend