首页 > 其他 > 详细

HackerRank - Minimum Swaps 2

时间:2018-09-01 10:39:22      阅读:341      评论:0      收藏:0      [点我收藏+]

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

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!