mirror of
				https://gitee.com/coder-xiaomo/leetcode-problemset
				synced 2025-11-04 19:53:12 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<p>You are given an integer array <code>nums</code> sorted in <strong>non-decreasing</strong> order.</p>
 | 
						|
 | 
						|
<p>Build and return <em>an integer array </em><code>result</code><em> with the same length as </em><code>nums</code><em> such that </em><code>result[i]</code><em> is equal to the <strong>summation of absolute differences</strong> between </em><code>nums[i]</code><em> and all the other elements in the array.</em></p>
 | 
						|
 | 
						|
<p>In other words, <code>result[i]</code> is equal to <code>sum(|nums[i]-nums[j]|)</code> where <code>0 <= j < nums.length</code> and <code>j != i</code> (<strong>0-indexed</strong>).</p>
 | 
						|
 | 
						|
<p> </p>
 | 
						|
<p><strong class="example">Example 1:</strong></p>
 | 
						|
 | 
						|
<pre>
 | 
						|
<strong>Input:</strong> nums = [2,3,5]
 | 
						|
<strong>Output:</strong> [4,3,5]
 | 
						|
<strong>Explanation:</strong> 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.
 | 
						|
</pre>
 | 
						|
 | 
						|
<p><strong class="example">Example 2:</strong></p>
 | 
						|
 | 
						|
<pre>
 | 
						|
<strong>Input:</strong> nums = [1,4,6,8,10]
 | 
						|
<strong>Output:</strong> [24,15,13,15,21]
 | 
						|
</pre>
 | 
						|
 | 
						|
<p> </p>
 | 
						|
<p><strong>Constraints:</strong></p>
 | 
						|
 | 
						|
<ul>
 | 
						|
	<li><code>2 <= nums.length <= 10<sup>5</sup></code></li>
 | 
						|
	<li><code>1 <= nums[i] <= nums[i + 1] <= 10<sup>4</sup></code></li>
 | 
						|
</ul>
 |