返回介绍

solution / 0900-0999 / 0945.Minimum Increment to Make Array Unique / README_EN

发布于 2024-06-17 01:03:32 字数 2999 浏览 0 评论 0 收藏 0

945. Minimum Increment to Make Array Unique

中文文档

Description

You are given an integer array nums. In one move, you can pick an index i where 0 <= i < nums.length and increment nums[i] by 1.

Return _the minimum number of moves to make every value in _nums_ unique_.

The test cases are generated so that the answer fits in a 32-bit integer.

 

Example 1:

Input: nums = [1,2,2]
Output: 1
Explanation: After 1 move, the array could be [1, 2, 3].

Example 2:

Input: nums = [3,2,1,2,1,7]
Output: 6
Explanation: After 6 moves, the array could be [3, 4, 1, 2, 5, 7].
It can be shown with 5 or less moves that it is impossible for the array to have all unique values.

 

Constraints:

  • 1 <= nums.length <= 105
  • 0 <= nums[i] <= 105

Solutions

Solution 1

class Solution:
  def minIncrementForUnique(self, nums: List[int]) -> int:
    nums.sort()
    ans = 0
    for i in range(1, len(nums)):
      if nums[i] <= nums[i - 1]:
        d = nums[i - 1] - nums[i] + 1
        nums[i] += d
        ans += d
    return ans
class Solution {
  public int minIncrementForUnique(int[] nums) {
    Arrays.sort(nums);
    int ans = 0;
    for (int i = 1; i < nums.length; ++i) {
      if (nums[i] <= nums[i - 1]) {
        int d = nums[i - 1] - nums[i] + 1;
        nums[i] += d;
        ans += d;
      }
    }
    return ans;
  }
}
class Solution {
public:
  int minIncrementForUnique(vector<int>& nums) {
    sort(nums.begin(), nums.end());
    int ans = 0;
    for (int i = 1; i < nums.size(); ++i) {
      if (nums[i] <= nums[i - 1]) {
        int d = nums[i - 1] - nums[i] + 1;
        nums[i] += d;
        ans += d;
      }
    }
    return ans;
  }
};
func minIncrementForUnique(nums []int) int {
  sort.Ints(nums)
  ans := 0
  for i := 1; i < len(nums); i++ {
    if nums[i] <= nums[i-1] {
      d := nums[i-1] - nums[i] + 1
      nums[i] += d
      ans += d
    }
  }
  return ans
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文