不太喜欢这样的题目,你需要证明/猜测最优解是将所有数字转换成median/中位数。
使用nth_element找中位数,然后再循环一遍求合即可。
时间复杂度:O(n)
空间复杂度:O(1)
1 2 3 4 5 6 7 8 9 10 11 |
class Solution { public: int minMoves2(vector<int>& nums) { const int n = nums.size(); nth_element(begin(nums), begin(nums) + n / 2, end(nums)); const int median = nums[n / 2]; return accumulate(begin(nums), end(nums), 0, [median](int s, int x) { return s + abs(x - median); }); } }; |
请尊重作者的劳动成果,转载请注明出处!花花保留对文章/视频的所有权利。
如果您喜欢这篇文章/视频,欢迎您捐赠花花。
If you like my articles / videos, donations are welcome.
Be First to Comment