Randomized algorithms
Inge Li Gørtz
Thank you to Kevin Wayne for inspiration to slides
Randomized algorithms Inge Li Grtz Thank you to Kevin Wayne for - - PowerPoint PPT Presentation
Randomized algorithms Inge Li Grtz Thank you to Kevin Wayne for inspiration to slides Randomized algorithms Last week Contention resolution Global minimum cut Today Expectation of random variables Guessing cards
Thank you to Kevin Wayne for inspiration to slides
6
j=1
. How many independent flips X until first heads?
? (first succes is in round )
∞
j=1
∞
j=1
∞
j=1
for .
∞
∑
k=0
k ⋅ xk = x (1 − x)2 |x| < 1
card.
card from full deck uniformly at random.
guess correct and zero otherwise.
.
card.
.
guess correct and zero otherwise.
.
ln n < H(n) < ln n + 1
many boxes before you have at least 1 coupon of each type?
.
distinct coupons.
.
.
n−1
j=0
n−1
j=0
n−1
j=0
n
i=1
Select(S, k) { Choose a pivot s ∈ S uniformly at random. For each element e in S if e < s put e in S’ if e > s put e in S’’ if |S’| = k-1 then return s if |S’| ≥ k then call Select(S’, k) if |S’| < k then call Select(S’’, k - |S’| - 1) }
likely to be good.
Select(S, k) { Choose a pivot s ∈ S uniformly at random. For each element e in S if e < s put e in S’ if e > s put e in S’’ if |S’| = k-1 then return s if |S’| ≥ k then call Select(S’, k) if |S’| < k then call Select(S’’, k - |S’| - 1) }
at least a quarter are larger.
ends.
expected number of iterations in phase j at most 2.
E[X] = ∑
j
E[Xj] ≤ ∑
j
2cn ( 3 4)
j
= 2cn∑
j (
3 4)
j
≤ 8cn
Quicksort(A,p,r) { if |S| ≤ 1 return S else Choose a pivot s ∈ S uniformly at random. For each element e in S if e < s put e in S’ if e > s put e in S’’ L = Quicksort(S’) R = Quicksort(S’’) Return the sorted list L◦s◦R. }
the list in each recursive call.
n−1
i=1 n
j=i+1
n−1
i=1 n
j=i+1
n−1
i=1 n
j=i+1
compared iff
is the first pivot chosen from .
all elements from equally likely to be chosen as first pivot from this set.
n−1
i=1 n
j=i+1
n−1
i=1 n
j=i+1
n−1
i=1 n
j=i+1
n−1
i=1 n
j=i+1
n−1
i=1 n
j=i+1
=
n−1
∑
i=1 n−i+1
∑
k=2
2 k <
n−1
∑
i=1 n
∑
k=1
2 k =
n−1
∑
i=1
O(log n) = O(n log n)