I am given a permutation of the set {1,2,...,n}. I have to sort this permutation only by swapping numbers situated on succesive positions with a minimum total cost. The cost of swapping the elements x,y, situated on succesive position is min(x,y).
For example if I have the permutation 3,1,2,4 the total minimum cost is 3. Because I do these steps ( (x,y) means swapping x with y):
- (3,1),2,4 results 1,3,2,4 with the cost min(1,3)=1
- 1,(3,2),4 results 1,2,3,4 with the cost min(2,3)=2
Total cost is 3.
I tried brute force, by swapping the minimum cost unsorted pair, until there are no unsorted pairs, but this method is obviously not fast enough.
My question is, how do I find the minimum cost of sorting given my conditions?