1.1
0--------0
6.7/ \ \2.4
/ \5.2 0
0 \ /2.3
0-----0
3.3
(Common wrong answer on Jamboard.)
Suppose there exists a minimum spanning tree T that includes a maximum edge emax=uv of some cycle. Remove emax from T.
The tree is no longer a minimum spanning tree but instead two components, one containing u and the other containing v. But since there was a cycle in G containing emax, there is a path in G from u to v. Therefore, some edge e on this path must connect the two components.
Exchange e and emax, contradicting minimality.
(10) (3) (11)
e --------- a --- b ----------- d
\ \ / /
\_ (2) \ / (1) _/
\ c /
\_ _/
\ /
(16) \_ _/ (15)
\ /
\_ _/
\ /
\_ _/
f
For any intermediate spanning forest F of a graph G,
Theorem. Let F be an intermediate spanning forest of a weighted graph G, and suppose e is a safe edge. Then the minimum spanning tree contains e.
Let G be a weighted graph with vertex set V and edge set E.
MetaMST(V,E)
F = (V, ∅)
while F is not a tree
add a safe edge to F // NOTE: This choice needs to be specified!!
return F
(See Jamboard from last time.)
Use MetaMST
, but add all the safe edges inside the while
-loop.
MetaMST(V,E)
F = (V, ∅)
while F is not a tree
add a safe edge to F // NOTE: This choice needs to be specified!!
return F
In order to analyze the time, we need to specify how the safe edges are located.
Table #1 | Table #2 | Table #3 | Table #4 | Table #5 | Table #6 | Table #7 |
---|---|---|---|---|---|---|
John | Claire | Logan | Graham | Kevin | Josiah | Isaac |
James | Jack | Blake | Trevor | Grace | Drake | Talia |
Ethan | Kristen | Bri | Levi | Andrew | Nathan | Jordan |
CountAndLabel(G): LabelOneComponent(s,count):
count <- 0 Enqueue(s)
for all vertices v while the queue is not empty
unmark v v <- Dequeue
for all vertices v if v is unmarked
if v is unmarked mark v // Line #1
count <- count + 1 v.comp <- count
LabelOneComponent(v, count) for each edge vw
return count Enqueue(w) // Line #2
Suppose G has V vertices and E edges.
What is another name for the LabelOneComponent
algorithm?
How many times does CountAndLabel
execute Line #1?
How many times does CountAndLabel
execute Line #2?
What is the running time of CountAndLabel
?
Borůvka(V, E): AddAllSafeEdges(E, F, count):
F = (V, ∅) for i <- 1 to count
count <- CountAndLabel(F) safe[i] <- Null
while count > 1 for each edge uv ∈ E
AddAllSafeEdges(E, F, count) if comp(u) != comp(v)
count <- CountAndLabel(F) if safe[comp(u)] = Null or w(uv) < w(safe[comp(u)])
return F safe[comp(u)] <- uv
if safe[comp(v)] = Null or w(uv) < w(safe[comp(v)])
safe[comp(v)] <- uv
for i <- 1 to count
add safe[i] to F
Borůvka(V, E): AddAllSafeEdges(E, F, count):
F = (V, ∅) for i <- 1 to count
count <- CountAndLabel(F) safe[i] <- Null
while count > 1 for each edge uv ∈ E
AddAllSafeEdges(E, F, count) if comp(u) != comp(v)
count <- CountAndLabel(F) if safe[comp(u)] = Null or w(uv) < w(safe[comp(u)])
return F safe[comp(u)] <- uv
if safe[comp(v)] = Null or w(uv) < w(safe[comp(v)])
safe[comp(v)] <- uv
for i <- 1 to count
add safe[i] to F
What is the running time of the first CountAndLabel
call?
After the first AddAllSafeEdges
call, how many components (at most) are there? (i.e., what is the maximum possible value of count
?)
What is the worst-case number of iterations of the while
-loop?
What is the running time of subsequent CountAndLabel
calls?
Give an upper bound on the running time of AddAllSafeEdges
.
Read pp. 262-263. Upshot: Borůvka’s Algorithm often beats its worst-case O(ElogV) running time.