1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-10 18:48:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/等值距离和 [sum-of-distances].html
2023-04-14 14:39:57 +08:00

36 lines
1.5 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<p>给你一个下标从 <strong>0</strong> 开始的整数数组 <code>nums</code> 。现有一个长度等于 <code>nums.length</code> 的数组 <code>arr</code> 。对于满足 <code>nums[j] == nums[i]</code><code>j != i</code> 的所有 <code>j</code> <code>arr[i]</code> 等于所有 <code>|i - j|</code> 之和。如果不存在这样的 <code>j</code> ,则令 <code>arr[i]</code> 等于 <code>0</code></p>
<p>返回数组<em> </em><code>arr</code><em></em></p>
<p>&nbsp;</p>
<p><strong>示例 1</strong></p>
<pre>
<strong>输入:</strong>nums = [1,3,1,1,2]
<strong>输出:</strong>[5,0,3,4,0]
<strong>解释:</strong>
i = 0 nums[0] == nums[2] 且 nums[0] == nums[3] 。因此arr[0] = |0 - 2| + |0 - 3| = 5 。
i = 1 arr[1] = 0 因为不存在值等于 3 的其他下标。
i = 2 nums[2] == nums[0] 且 nums[2] == nums[3] 。因此arr[2] = |2 - 0| + |2 - 3| = 3 。
i = 3 nums[3] == nums[0] 且 nums[3] == nums[2] 。因此arr[3] = |3 - 0| + |3 - 2| = 4 。
i = 4 arr[4] = 0 因为不存在值等于 2 的其他下标。
</pre>
<p><strong>示例 2</strong></p>
<pre>
<strong>输入:</strong>nums = [0,5,3]
<strong>输出:</strong>[0,0,0]
<strong>解释:</strong>因为 nums 中的元素互不相同,对于所有 i ,都有 arr[i] = 0 。
</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<li><code>1 &lt;= nums.length &lt;= 10<sup>5</sup></code></li>
<li><code>0 &lt;= nums[i] &lt;= 10<sup>9</sup></code></li>
</ul>