Review Background
sampling theorem:
Recursive algorithm without boruvka:
T(m, n) = T(m/2, n) + O(m) + T(2n, n) = O(m + n log n)
(sloppy on expectation on T(2n,n))
Recursive algorithm with 3 boruvka steps:

so set c = 2c1 (not sloppy expectation).
Notes: