Loading [MathJax]/jax/output/HTML-CSS/jax.js

Sunday, July 12, 2015

Sorting with reversals II [Solution]

The problem was:

You have an size n array of zeroes, ones and twos. The only write operation is to reverse a sub-array (paying cost equal to the length of the the sub-array). Can we sort the array in O(nlogn) cost?

Solution

One solution is to use divide and conquer.

Suppose you divided the array into two approximately equal halves, and sorted each sub-array separately.

Then you will see an array like


001122|001122

Now, we can sort a chunk of 2s and 0s by doing a cyclic shift of the chunk 2200, so that it looks like 0022.

We can do a cyclic shift of an array using only three reversals. Say you want to cyclic shift a1,am to look like ak,ak+1,,am,a1,a2,ak1. This we can achieve by first reversing a1,ak1 and akam, so the array now looks like ak1,a1,am,ak+1,ak and then reversing the whole array.

Each reverse costs O(n), and with a constant number of these, give the two sorted halves, we can sort the whole array.

Thus the cost satisfies the recurrence

C(n)=2C(n/2)+O(n)

which gives us C(n)=O(nlogn).

No comments:

Post a Comment