Please read the new rule regarding the restriction on the use of AI tools. ×

How to find the minimum number of increments/decrements needed to make all array elements distinct ?

Revision en6, by yamih23436, 2021-03-31 06:50:30

Say , size of given array is $$$N$$$ and $$$abs(a[i])$$$<= 10000000

Example :

$$$ {1,100,100,100,100} $$$

Minimum cost = $$$4$$$

$$${1,100,101,99,102}$$$

I am looking for both $$$O(n*n)$$$ and $$$O(n)$$$ solutions .

Source of the problem : Just occurred to my mind .

My idea : Sort the given array , then apply the algorithm mentioned in this problem : https://codeforces.me/contest/713/problem/C

Tags #array

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
en6 English yamih23436 2021-03-31 06:50:30 77
en5 English yamih23436 2021-03-31 06:46:52 208
en4 English yamih23436 2021-03-31 06:44:29 4 Tiny change: 'st = $4$\n${1,100,' -> 'st = $4$\n\n\n${1,100,'
en3 English yamih23436 2021-03-31 06:33:34 4 Tiny change: 'um cost = 4\n\n${1,100,' -> 'um cost = $4\n$\n${1,100,'
en2 English yamih23436 2021-03-31 06:32:47 3
en1 English yamih23436 2021-03-31 06:32:10 360 Initial revision (published)