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
0…01…12…2|0…01…12…2
Now, we can sort a chunk of 2s and 0s by doing a cyclic shift of the chunk 2…20…0, so that it looks like 0…02…2.
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,…ak−1. This we can achieve by first reversing a1,…ak−1 and ak…am, so the array now looks like ak−1,…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).
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
0…01…12…2|0…01…12…2
Now, we can sort a chunk of 2s and 0s by doing a cyclic shift of the chunk 2…20…0, so that it looks like 0…02…2.
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,…ak−1. This we can achieve by first reversing a1,…ak−1 and ak…am, so the array now looks like ak−1,…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