码迷,mamicode.com
首页 > 其他好文 > 详细

HackerRank - Minimum Swaps 2

时间:2018-09-01 12:21:48      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:turn   target   code   make   when   cto   col   div   str   

It is not a hard one, but I still learnt a good lesson on how to optimize my strategy.

My first thought was on the right track: do a O(n) scan and do swaps to make sure each swap can put one number into correct bucket. However I was trying to find the target value for the current bucket - like, when checking a[i], i was trying to look for i + 1, which is unnecessarily complex. However, since i already know value of a[i], i can put that number to its expected slot, which is much much easier.

int minimumSwaps(vector<int> arr) {
    int cnt = 0;
    for (int i = 0; i < arr.size(); i ++){
        if (arr[i] == i + 1) continue;
        swap(arr[i], arr[arr[i] - 1]);
        cnt ++;
        i --;
    }
    return cnt;
}

HackerRank - Minimum Swaps 2

标签:turn   target   code   make   when   cto   col   div   str   

原文地址:https://www.cnblogs.com/tonix/p/9568986.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!