mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-10 18:48:13 +08:00
53 lines
1.8 KiB
HTML
53 lines
1.8 KiB
HTML
<p>有 <code>n</code> 个筹码。第 <code>i</code> 个筹码的位置是<meta charset="UTF-8" /> <code>position[i]</code> 。</p>
|
||
|
||
<p>我们需要把所有筹码移到同一个位置。在一步中,我们可以将第 <code>i</code> 个筹码的位置从 <code>position[i]</code> 改变为:</p>
|
||
|
||
<p><meta charset="UTF-8" /></p>
|
||
|
||
<ul>
|
||
<li><code>position[i] + 2</code> 或 <code>position[i] - 2</code> ,此时 <code>cost = 0</code></li>
|
||
<li><code>position[i] + 1</code> 或 <code>position[i] - 1</code> ,此时 <code>cost = 1</code></li>
|
||
</ul>
|
||
|
||
<p>返回将所有筹码移动到同一位置上所需要的 <em>最小代价</em> 。</p>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>示例 1:</strong></p>
|
||
|
||
<p><img alt="" src="https://assets.leetcode.com/uploads/2020/08/15/chips_e1.jpg" style="height: 217px; width: 750px;" /></p>
|
||
|
||
<pre>
|
||
<strong>输入:</strong>position = [1,2,3]
|
||
<strong>输出:</strong>1
|
||
<strong>解释:</strong>第一步:将位置3的筹码移动到位置1,成本为0。
|
||
第二步:将位置2的筹码移动到位置1,成本= 1。
|
||
总成本是1。
|
||
</pre>
|
||
|
||
<p><strong>示例 2:</strong></p>
|
||
|
||
<p><img alt="" src="https://assets.leetcode.com/uploads/2020/08/15/chip_e2.jpg" style="height: 306px; width: 750px;" /></p>
|
||
|
||
<pre>
|
||
<strong>输入:</strong>position = [2,2,2,3,3]
|
||
<strong>输出:</strong>2
|
||
<strong>解释:</strong>我们可以把位置3的两个筹码移到位置2。每一步的成本为1。总成本= 2。
|
||
</pre>
|
||
|
||
<p><strong>示例 3:</strong></p>
|
||
|
||
<pre>
|
||
<strong>输入:</strong>position = [1,1000000000]
|
||
<strong>输出:</strong>1
|
||
</pre>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>提示:</strong></p>
|
||
|
||
<ul>
|
||
<li><code>1 <= position.length <= 100</code></li>
|
||
<li><code>1 <= position[i] <= 10^9</code></li>
|
||
</ul>
|