30
September 28, 2005 Copyright © 2001-5 by Erik D. Demaine and Charles E. Leiserson L6.1 Introduction to Algorithms 6.046J/18.401J LECTURE 6 Order Statistics Randomized divide and conquer Analysis of expected time Worst-case linear-time order statistics Analysis Prof. Erik Demaine

Introduction to Algorithms - MIT OpenCourseWare · 2020. 8. 4. · Worst-case linear-time order statistics if i = k then return x elseif i < k thenrecursively SELECT the ith smallest

  • Upload
    others

  • View
    0

  • Download
    0

Embed Size (px)

Citation preview

Page 1: Introduction to Algorithms - MIT OpenCourseWare · 2020. 8. 4. · Worst-case linear-time order statistics if i = k then return x elseif i < k thenrecursively SELECT the ith smallest

September 28, 2005 Copyright © 2001-5 by Erik D. Demaine and Charles E. Leiserson L6.1

Introduction to Algorithms6.046J/18.401J

LECTURE 6Order Statistics• Randomized divide and

conquer• Analysis of expected time• Worst-case linear-time

order statistics• Analysis

Prof. Erik Demaine

Page 2: Introduction to Algorithms - MIT OpenCourseWare · 2020. 8. 4. · Worst-case linear-time order statistics if i = k then return x elseif i < k thenrecursively SELECT the ith smallest

September 28, 2005 Copyright © 2001-5 by Erik D. Demaine and Charles E. Leiserson L6.2

Order statisticsSelect the ith smallest of n elements (the element with rank i).• i = 1: minimum;• i = n: maximum;• i = ⎣(n+1)/2⎦ or ⎡(n+1)/2⎤: median.

Naive algorithm: Sort and index ith element.Worst-case running time = Θ(n lg n) + Θ(1)

= Θ(n lg n),using merge sort or heapsort (not quicksort).

Page 3: Introduction to Algorithms - MIT OpenCourseWare · 2020. 8. 4. · Worst-case linear-time order statistics if i = k then return x elseif i < k thenrecursively SELECT the ith smallest

September 28, 2005 Copyright © 2001-5 by Erik D. Demaine and Charles E. Leiserson L6.3

Randomized divide-and-conquer algorithm

RAND-SELECT(A, p, q, i) ⊳ ith smallest of A[p . . q] if p = q then return A[p]r ← RAND-PARTITION(A, p, q)k ← r – p + 1 ⊳ k = rank(A[r])if i = k then return A[r]if i < k

then return RAND-SELECT(A, p, r – 1, i )else return RAND-SELECT(A, r + 1, q, i – k )

≤ A[r]≤ A[r] ≥ A[r]≥ A[r]rp q

k

Page 4: Introduction to Algorithms - MIT OpenCourseWare · 2020. 8. 4. · Worst-case linear-time order statistics if i = k then return x elseif i < k thenrecursively SELECT the ith smallest

September 28, 2005 Copyright © 2001-5 by Erik D. Demaine and Charles E. Leiserson L6.4

Example

Select the i = 7th smallest:

i = 7pivot

66 1010 1313 55 88 33 22 1111

k = 4

Select the 7 – 4 = 3rd smallest recursively.

22 55 33 66 88 1313 1010 1111Partition:

Page 5: Introduction to Algorithms - MIT OpenCourseWare · 2020. 8. 4. · Worst-case linear-time order statistics if i = k then return x elseif i < k thenrecursively SELECT the ith smallest

September 28, 2005 Copyright © 2001-5 by Erik D. Demaine and Charles E. Leiserson L6.5

Intuition for analysis(All our analyses today assume that all elements are distinct.)Lucky:

101log 9/10 == nnCASE 3

T(n) = T(9n/10) + Θ(n)= Θ(n)

Unlucky:T(n) = T(n – 1) + Θ(n)

= Θ(n2)arithmetic series

Worse than sorting!

Page 6: Introduction to Algorithms - MIT OpenCourseWare · 2020. 8. 4. · Worst-case linear-time order statistics if i = k then return x elseif i < k thenrecursively SELECT the ith smallest

September 28, 2005 Copyright © 2001-5 by Erik D. Demaine and Charles E. Leiserson L6.6

Analysis of expected time

The analysis follows that of randomized quicksort, but it’s a little different.Let T(n) = the random variable for the running time of RAND-SELECT on an input of size n, assuming random numbers are independent.For k = 0, 1, …, n–1, define the indicator random variable

Xk =1 if PARTITION generates a k : n–k–1 split,0 otherwise.

Page 7: Introduction to Algorithms - MIT OpenCourseWare · 2020. 8. 4. · Worst-case linear-time order statistics if i = k then return x elseif i < k thenrecursively SELECT the ith smallest

September 28, 2005 Copyright © 2001-5 by Erik D. Demaine and Charles E. Leiserson L6.7

Analysis (continued)

T(n) =

T(max{0, n–1}) + Θ(n) if 0 : n–1 split,T(max{1, n–2}) + Θ(n) if 1 : n–2 split,

MT(max{n–1, 0}) + Θ(n) if n–1 : 0 split,

( )∑−

=Θ+−−=

1

0)(})1,(max{

n

kk nknkTX .

To obtain an upper bound, assume that the ith element always falls in the larger side of the partition:

Page 8: Introduction to Algorithms - MIT OpenCourseWare · 2020. 8. 4. · Worst-case linear-time order statistics if i = k then return x elseif i < k thenrecursively SELECT the ith smallest

September 28, 2005 Copyright © 2001-5 by Erik D. Demaine and Charles E. Leiserson L6.8

Calculating expectation( )⎥

⎤⎢⎣

⎡Θ+−−= ∑

=

1

0)(})1,(max{)]([

n

kk nknkTXEnTE

Take expectations of both sides.

Page 9: Introduction to Algorithms - MIT OpenCourseWare · 2020. 8. 4. · Worst-case linear-time order statistics if i = k then return x elseif i < k thenrecursively SELECT the ith smallest

September 28, 2005 Copyright © 2001-5 by Erik D. Demaine and Charles E. Leiserson L6.9

Calculating expectation( )

( )[ ]∑

∑−

=

=

Θ+−−=

⎥⎦

⎤⎢⎣

⎡Θ+−−=

1

0

1

0

)(})1,(max{

)(})1,(max{)]([

n

kk

n

kk

nknkTXE

nknkTXEnTE

Linearity of expectation.

Page 10: Introduction to Algorithms - MIT OpenCourseWare · 2020. 8. 4. · Worst-case linear-time order statistics if i = k then return x elseif i < k thenrecursively SELECT the ith smallest

September 28, 2005 Copyright © 2001-5 by Erik D. Demaine and Charles E. Leiserson L6.10

Calculating expectation( )

( )[ ]

[ ] [ ]∑

=

=

=

Θ+−−⋅=

Θ+−−=

⎥⎦

⎤⎢⎣

⎡Θ+−−=

1

0

1

0

1

0

)(})1,(max{

)(})1,(max{

)(})1,(max{)]([

n

kk

n

kk

n

kk

nknkTEXE

nknkTXE

nknkTXEnTE

Independence of Xk from other random choices.

Page 11: Introduction to Algorithms - MIT OpenCourseWare · 2020. 8. 4. · Worst-case linear-time order statistics if i = k then return x elseif i < k thenrecursively SELECT the ith smallest

September 28, 2005 Copyright © 2001-5 by Erik D. Demaine and Charles E. Leiserson L6.11

Calculating expectation( )

( )[ ]

[ ] [ ]

[ ] ∑∑

=

=

=

=

=

Θ+−−=

Θ+−−⋅=

Θ+−−=

⎥⎦

⎤⎢⎣

⎡Θ+−−=

1

0

1

0

1

0

1

0

1

0

)(1})1,(max{1

)(})1,(max{

)(})1,(max{

)(})1,(max{)]([

n

k

n

k

n

kk

n

kk

n

kk

nn

knkTEn

nknkTEXE

nknkTXE

nknkTXEnTE

Linearity of expectation; E[Xk] = 1/n .

Page 12: Introduction to Algorithms - MIT OpenCourseWare · 2020. 8. 4. · Worst-case linear-time order statistics if i = k then return x elseif i < k thenrecursively SELECT the ith smallest

September 28, 2005 Copyright © 2001-5 by Erik D. Demaine and Charles E. Leiserson L6.12

Calculating expectation( )

( )[ ]

[ ] [ ]

[ ]

[ ]⎣ ⎦

)()(2

)(1})1,(max{1

)(})1,(max{

)(})1,(max{

)(})1,(max{)]([

1

2/

1

0

1

0

1

0

1

0

1

0

nkTEn

nn

knkTEn

nknkTEXE

nknkTXE

nknkTXEnTE

n

nk

n

k

n

k

n

kk

n

kk

n

kk

Θ+≤

Θ+−−=

Θ+−−⋅=

Θ+−−=

⎥⎦

⎤⎢⎣

⎡Θ+−−=

∑∑

=

=

=

=

=

=

Upper terms appear twice.

Page 13: Introduction to Algorithms - MIT OpenCourseWare · 2020. 8. 4. · Worst-case linear-time order statistics if i = k then return x elseif i < k thenrecursively SELECT the ith smallest

September 28, 2005 Copyright © 2001-5 by Erik D. Demaine and Charles E. Leiserson L6.13

Hairy recurrence

[ ]⎣ ⎦

)()(2)]([1

2/nkTE

nnTE

n

nkΘ+= ∑

=

(But not quite as hairy as the quicksort one.)

Prove: E[T(n)] ≤ cn for constant c > 0 .• The constant c can be chosen large enough

so that E[T(n)] ≤ cn for the base cases.

Use fact:⎣ ⎦

21

2/83nk

n

nk∑−

=≤ (exercise).

Page 14: Introduction to Algorithms - MIT OpenCourseWare · 2020. 8. 4. · Worst-case linear-time order statistics if i = k then return x elseif i < k thenrecursively SELECT the ith smallest

September 28, 2005 Copyright © 2001-5 by Erik D. Demaine and Charles E. Leiserson L6.14

Substitution method

[ ]⎣ ⎦

)(2)(1

2/nck

nnTE

n

nkΘ+≤ ∑

=

Substitute inductive hypothesis.

Page 15: Introduction to Algorithms - MIT OpenCourseWare · 2020. 8. 4. · Worst-case linear-time order statistics if i = k then return x elseif i < k thenrecursively SELECT the ith smallest

September 28, 2005 Copyright © 2001-5 by Erik D. Demaine and Charles E. Leiserson L6.15

Substitution method

[ ]⎣ ⎦

)(832

)(2)(

2

1

2/

nnnc

nckn

nTEn

nk

Θ+⎟⎠⎞⎜

⎝⎛≤

Θ+≤ ∑−

=

Use fact.

Page 16: Introduction to Algorithms - MIT OpenCourseWare · 2020. 8. 4. · Worst-case linear-time order statistics if i = k then return x elseif i < k thenrecursively SELECT the ith smallest

September 28, 2005 Copyright © 2001-5 by Erik D. Demaine and Charles E. Leiserson L6.16

Substitution method

[ ]⎣ ⎦

⎟⎠⎞⎜

⎝⎛ Θ−−=

Θ+⎟⎠⎞⎜

⎝⎛≤

Θ+≤ ∑−

=

)(4

)(832

)(2)(

2

1

2/

ncncn

nnnc

nckn

nTEn

nk

Express as desired – residual.

Page 17: Introduction to Algorithms - MIT OpenCourseWare · 2020. 8. 4. · Worst-case linear-time order statistics if i = k then return x elseif i < k thenrecursively SELECT the ith smallest

September 28, 2005 Copyright © 2001-5 by Erik D. Demaine and Charles E. Leiserson L6.17

Substitution method

[ ]⎣ ⎦

cn

ncncn

nnnc

nckn

nTEn

nk

⎟⎠⎞⎜

⎝⎛ Θ−−=

Θ+⎟⎠⎞⎜

⎝⎛≤

Θ+≤ ∑−

=

)(4

)(832

)(2)(

2

1

2/

,if c is chosen large enough so that cn/4 dominates the Θ(n).

Page 18: Introduction to Algorithms - MIT OpenCourseWare · 2020. 8. 4. · Worst-case linear-time order statistics if i = k then return x elseif i < k thenrecursively SELECT the ith smallest

September 28, 2005 Copyright © 2001-5 by Erik D. Demaine and Charles E. Leiserson L6.18

Summary of randomized order-statistic selection

• Works fast: linear expected time.• Excellent algorithm in practice.• But, the worst case is very bad: Θ(n2).

Q. Is there an algorithm that runs in linear time in the worst case?

IDEA: Generate a good pivot recursively.

A. Yes, due to Blum, Floyd, Pratt, Rivest, and Tarjan [1973].

Page 19: Introduction to Algorithms - MIT OpenCourseWare · 2020. 8. 4. · Worst-case linear-time order statistics if i = k then return x elseif i < k thenrecursively SELECT the ith smallest

September 28, 2005 Copyright © 2001-5 by Erik D. Demaine and Charles E. Leiserson L6.19

Worst-case linear-time order statistics

if i = k then return xelseif i < k

then recursively SELECT the ith smallest element in the lower part

else recursively SELECT the (i–k)th smallest element in the upper part

SELECT(i, n)1. Divide the n elements into groups of 5. Find

the median of each 5-element group by rote.2. Recursively SELECT the median x of the ⎣n/5⎦

group medians to be the pivot.3. Partition around the pivot x. Let k = rank(x).4.

Same as RAND-SELECT

Page 20: Introduction to Algorithms - MIT OpenCourseWare · 2020. 8. 4. · Worst-case linear-time order statistics if i = k then return x elseif i < k thenrecursively SELECT the ith smallest

September 28, 2005 Copyright © 2001-5 by Erik D. Demaine and Charles E. Leiserson L6.20

Choosing the pivot

Page 21: Introduction to Algorithms - MIT OpenCourseWare · 2020. 8. 4. · Worst-case linear-time order statistics if i = k then return x elseif i < k thenrecursively SELECT the ith smallest

September 28, 2005 Copyright © 2001-5 by Erik D. Demaine and Charles E. Leiserson L6.21

Choosing the pivot

1. Divide the n elements into groups of 5.

Page 22: Introduction to Algorithms - MIT OpenCourseWare · 2020. 8. 4. · Worst-case linear-time order statistics if i = k then return x elseif i < k thenrecursively SELECT the ith smallest

September 28, 2005 Copyright © 2001-5 by Erik D. Demaine and Charles E. Leiserson L6.22

Choosing the pivot

lesser

greater

1. Divide the n elements into groups of 5. Find the median of each 5-element group by rote.

Page 23: Introduction to Algorithms - MIT OpenCourseWare · 2020. 8. 4. · Worst-case linear-time order statistics if i = k then return x elseif i < k thenrecursively SELECT the ith smallest

September 28, 2005 Copyright © 2001-5 by Erik D. Demaine and Charles E. Leiserson L6.23

Choosing the pivot

x

lesser

greater

1. Divide the n elements into groups of 5. Find the median of each 5-element group by rote.

2. Recursively SELECT the median x of the ⎣n/5⎦group medians to be the pivot.

Page 24: Introduction to Algorithms - MIT OpenCourseWare · 2020. 8. 4. · Worst-case linear-time order statistics if i = k then return x elseif i < k thenrecursively SELECT the ith smallest

September 28, 2005 Copyright © 2001-5 by Erik D. Demaine and Charles E. Leiserson L6.24

Analysis

x

lesser

greater

At least half the group medians are ≤ x, which is at least ⎣ ⎣n/5⎦ /2⎦ = ⎣n/10⎦ group medians.

Page 25: Introduction to Algorithms - MIT OpenCourseWare · 2020. 8. 4. · Worst-case linear-time order statistics if i = k then return x elseif i < k thenrecursively SELECT the ith smallest

September 28, 2005 Copyright © 2001-5 by Erik D. Demaine and Charles E. Leiserson L6.25

Analysis (Assume all elements are distinct.)

x

lesser

greater

At least half the group medians are ≤ x, which is at least ⎣ ⎣n/5⎦ /2⎦ = ⎣n/10⎦ group medians.• Therefore, at least 3 ⎣n/10⎦ elements are ≤ x.

Page 26: Introduction to Algorithms - MIT OpenCourseWare · 2020. 8. 4. · Worst-case linear-time order statistics if i = k then return x elseif i < k thenrecursively SELECT the ith smallest

September 28, 2005 Copyright © 2001-5 by Erik D. Demaine and Charles E. Leiserson L6.26

Analysis (Assume all elements are distinct.)

x

lesser

greater

At least half the group medians are ≤ x, which is at least ⎣ ⎣n/5⎦ /2⎦ = ⎣n/10⎦ group medians.• Therefore, at least 3 ⎣n/10⎦ elements are ≤ x.• Similarly, at least 3 ⎣n/10⎦ elements are ≥ x.

Page 27: Introduction to Algorithms - MIT OpenCourseWare · 2020. 8. 4. · Worst-case linear-time order statistics if i = k then return x elseif i < k thenrecursively SELECT the ith smallest

September 28, 2005 Copyright © 2001-5 by Erik D. Demaine and Charles E. Leiserson L6.27

Minor simplification• For n ≥ 50, we have 3 ⎣n/10⎦ ≥ n/4.• Therefore, for n ≥ 50 the recursive call to

SELECT in Step 4 is executed recursively on ≤ 3n/4 elements.

• Thus, the recurrence for running time can assume that Step 4 takes time T(3n/4) in the worst case.

• For n < 50, we know that the worst-case time is T(n) = Θ(1).

Page 28: Introduction to Algorithms - MIT OpenCourseWare · 2020. 8. 4. · Worst-case linear-time order statistics if i = k then return x elseif i < k thenrecursively SELECT the ith smallest

September 28, 2005 Copyright © 2001-5 by Erik D. Demaine and Charles E. Leiserson L6.28

Developing the recurrence

if i = k then return xelseif i < k

then recursively SELECT the ith smallest element in the lower part

else recursively SELECT the (i–k)th smallest element in the upper part

SELECT(i, n)1. Divide the n elements into groups of 5. Find

the median of each 5-element group by rote.2. Recursively SELECT the median x of the ⎣n/5⎦

group medians to be the pivot.3. Partition around the pivot x. Let k = rank(x).4.

T(n)

Θ(n)

T(n/5)Θ(n)

T(3n/4)

Page 29: Introduction to Algorithms - MIT OpenCourseWare · 2020. 8. 4. · Worst-case linear-time order statistics if i = k then return x elseif i < k thenrecursively SELECT the ith smallest

September 28, 2005 Copyright © 2001-5 by Erik D. Demaine and Charles E. Leiserson L6.29

Solving the recurrence)(

43

51)( nnTnTnT Θ+⎟

⎠⎞⎜

⎝⎛+⎟

⎠⎞⎜

⎝⎛=

if c is chosen large enough to handle both the Θ(n) and the initial conditions.

cn

ncncn

ncn

ncncnnT

⎟⎠⎞⎜

⎝⎛ Θ−−=

Θ+=

Θ++≤

)(201

)(2019

)(43

51)(

,

Substitution:T(n) ≤ cn

Page 30: Introduction to Algorithms - MIT OpenCourseWare · 2020. 8. 4. · Worst-case linear-time order statistics if i = k then return x elseif i < k thenrecursively SELECT the ith smallest

September 28, 2005 Copyright © 2001-5 by Erik D. Demaine and Charles E. Leiserson L6.30

Conclusions• Since the work at each level of recursion

is a constant fraction (19/20) smaller, the work per level is a geometric series dominated by the linear work at the root.

• In practice, this algorithm runs slowly, because the constant in front of n is large.

• The randomized algorithm is far more practical.

Exercise: Why not divide into groups of 3?