Leetcode-945 Minimum Increment to Make Array Unique(使数组唯一的最小增量)
Posted Asurudo Jyo の 倉 庫
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode-945 Minimum Increment to Make Array Unique(使数组唯一的最小增量)相关的知识,希望对你有一定的参考价值。
1 class Solution 2 { 3 public: 4 int minIncrementForUnique(vector<int>& A) 5 { 6 int a[90000] {0}; 7 for(int i = 0;i < A.size();i ++) 8 a[A[i]] ++; 9 10 int result = 0; 11 for(int d = 0;d <= 89999;d ++) 12 { 13 if(a[d]>=2) 14 { 15 result += a[d]-1; 16 a[d+1] += a[d]-1; 17 } 18 } 19 return result; 20 } 21 };
以上是关于Leetcode-945 Minimum Increment to Make Array Unique(使数组唯一的最小增量)的主要内容,如果未能解决你的问题,请参考以下文章