ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

LeetCode 945. Minimum Increment to Make Array Unique

2022-07-19 08:34:53  阅读:211  来源: 互联网

标签:unique nums int res Make 945 Minimum array prev


原题链接在这里:https://leetcode.com/problems/minimum-increment-to-make-array-unique/

题目:

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

题解:

Sort the array.

For each number, it should be at least prev + 1.

If not, then accumlate prev + 1 - nums[i] to the result.

Time Complexity: O(nlogn). n = nums.length.

Space: O(1).

AC Java:

 1 class Solution {
 2     public int minIncrementForUnique(int[] nums) {
 3         if(nums == null || nums.length == 0){
 4             return 0;
 5         }
 6         
 7         Arrays.sort(nums);
 8         int res = 0;
 9         int prev = nums[0];
10         for(int i = 1; i < nums.length; i++){
11             int expect = prev + 1;
12             res += Math.max(expect - nums[i], 0);
13             prev = Math.max(expect, nums[i]);
14         }
15         
16         return res;
17     }
18 }

 

标签:unique,nums,int,res,Make,945,Minimum,array,prev
来源: https://www.cnblogs.com/Dylan-Java-NYC/p/16492673.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有