最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會(huì)員登陸 & 注冊(cè)

LeetCode 1685. Sum of Absolute Differences in a Sorted Array

2023-07-21 10:23 作者:您是打尖兒還是住店呢  | 我要投稿

You are given an integer array?nums?sorted in?non-decreasing?order.

Build and return?an integer array?result?with the same length as?nums?such that?result[i]?is equal to the?summation of absolute differences?between?nums[i]?and all the other elements in the array.

In other words,?result[i]?is equal to?sum(|nums[i]-nums[j]|)?where?0 <= j < nums.length?and?j != i?(0-indexed).

?

Example 1:

Input: nums = [2,3,5]

Output: [4,3,5]

Explanation:?

????????????Assuming the arrays are 0-indexed, then result[0] = |2-2| + |2-3| + |2-5| = 0 + 1 + 3 = 4, result[1] = |3-2| + |3-3| + |3-5| = 1 + 0 + 2 = 3, result[2] = |5-2| + |5-3| + |5-5| = 3 + 2 + 0 = 5.

Example 2:

Input: nums = [1,4,6,8,10]

Output: [24,15,13,15,21]

?

Constraints:

  • 2 <= nums.length <= 105

  • 1 <= nums[i] <= nums[i + 1] <= 104


Hide Hint 1

Absolute difference is the same as max(a, b) - min(a, b). How can you use this fact with the fact that the array is sorted?

Hide Hint 2

For nums[i], the answer is (nums[i] - nums[0]) + (nums[i] - nums[1]) + ... + (nums[i] - nums[i-1]) + (nums[i+1] - nums[i]) + (nums[i+2] - nums[i]) + ... + (nums[n-1] - nums[i]).

Hide Hint 3

It can be simplified to (nums[i] * i - (nums[0] + nums[1] + ... + nums[i-1])) + ((nums[i+1] + nums[i+2] + ... + nums[n-1]) - nums[i] * (n-i-1)). One can build prefix and suffix sums to compute this quickly.

-------------------------------------------

直接按照提示一步一步算就可以了。下面是代碼:

Runtime:?4 ms, faster than?62.05%?of?Java?online submissions for?Sum of Absolute Differences in a Sorted Array.

Memory Usage:?57.5 MB, less than?77.44%?of?Java?online submissions for?Sum of Absolute Differences in a Sorted Array.


LeetCode 1685. Sum of Absolute Differences in a Sorted Array的評(píng)論 (共 條)

分享到微博請(qǐng)遵守國家法律
墨竹工卡县| 竹北市| 渝中区| 三台县| 金川县| 博兴县| 襄樊市| 甘孜县| 伊春市| 翁源县| 视频| 云梦县| 美姑县| 澜沧| 贵港市| 日土县| 会泽县| 余庆县| 榆中县| 琼中| 嘉兴市| 视频| 涪陵区| 玉林市| 前郭尔| 延寿县| 临清市| 洞头县| 开远市| 永川市| 公主岭市| 沁阳市| 盐津县| 神木县| 铜山县| 枣强县| 唐河县| 永平县| 兴隆县| 修武县| 义乌市|