Given an array and k, we need to find the minimum operations needed to make GCD of the array equal or multiple of k. Here an operation means either increment or decrements an array element by 1.
Examples:
Input : a = { 4, 5, 6 }, k = 5
Output: 2
Explanation: We can increase 4 by 1 so that it becomes 5 and decrease 6 by 1 so that it becomes 5. Hence minimum operation will be 2.Input : a = { 4, 9, 6 }, k = 5
Output : 3
Explanation: Just like the previous example we can increase and decrease 4 and 6 by 1 and increase 9 by 1 so that it becomes 10. Now each element has GCD 5. Hence minimum operation will be 3.
Here we have to make the gcd of the array equal or multiple to k, which means there will be cases in which some elements are near k or to some of its multiple. So, to solve this we just have to make each array value equal to or multiple to K. By doing this we will achieve our solution as if every element is multiple of k then it’s GCD will be at least K. Now our next target is to convert the array elements in the minimum operation i.e. minimum number of increment and decrement. This minimum value of increment or decrement can be known only by taking the remainder of each number from K i.e. either we have to take the remainder value or (k-remainder) value, whichever is minimum among them.
Below is implementation of this approach:
C++
// CPP program to make GCD of array a mutiple // of k. #include <bits/stdc++.h> using namespace std; int MinOperation(int a[], int n, int k) { int result = 0; for (int i = 0; i < n; ++i) { // If array value is not 1 // and it is greater than k // then we can increase the // or decrease the remainder // obtained by dividing k // from the ith value of array // so that we get the number // which is either closer to k // or its multiple if (a[i] != 1 && a[i] > k) { result = result + min(a[i] % k, k - a[i] % k); } else { // Else we only have one choice // which is to increment the value // to make equal to k result = result + k - a[i]; } } return result; } // Driver code int main() { int arr[] = { 4, 5, 6 }; int n = sizeof(arr) / sizeof(arr[0]); int k = 5; cout << MinOperation(arr, n, k); return 0; } |
Java
// Java program to make GCD // of array a mutiple of k. import java.io.*; class GFG { static int MinOperation(int a[], int n, int k) { int result = 0; for (int i = 0; i < n; ++i) { // If array value is not 1 // and it is greater than k // then we can increase the // or decrease the remainder // obtained by dividing k // from the ith value of array // so that we get the number // which is either closer to k // or its multiple if (a[i] != 1 && a[i] > k) { result = result + Math.min(a[i] % k, k - a[i] % k); } else { // Else we only have one // choice which is to // increment the value // to make equal to k result = result + k - a[i]; } } return result; } // Driver code public static void main (String[] args) { int arr[] = {4, 5, 6}; int n = arr.length; int k = 5; System.out.println(MinOperation(arr, n, k)); } } // This code is contributed // by akt_mit |
Python 3
# Python 3 program to make GCD # of array a mutiple of k. def MinOperation(a, n, k): result = 0 for i in range(n) : ''' If array value is not 1 and it is greater than k then we can increase the or decrease the remainder obtained by dividing k from the ith value of array so that we get the number which is either closer to k or its multiple ''' if (a[i] != 1 and a[i] > k) : result = (result + min(a[i] % k, k - a[i] % k)) else : # Else we only have one choice # which is to increment the value # to make equal to k result = result + k - a[i] return result # Driver code if __name__ == "__main__": arr = [ 4, 5, 6 ] n = len(arr) k = 5 print(MinOperation(arr, n, k)) # This code is contributed # by ChitraNayal |
C#
// C# program to make GCD // of array a mutiple of k. using System; public class GFG{ static int MinOperation(int []a, int n, int k) { int result = 0; for (int i = 0; i < n; ++i) { // If array value is not 1 // and it is greater than k // then we can increase the // or decrease the remainder // obtained by dividing k // from the ith value of array // so that we get the number // which is either closer to k // or its multiple if (a[i] != 1 && a[i] > k) { result = result + Math.Min(a[i] % k, k - a[i] % k); } else { // Else we only have one // choice which is to // increment the value // to make equal to k result = result + k - a[i]; } } return result; } // Driver code static public void Main (){ int []arr = {4, 5, 6}; int n = arr.Length; int k = 5; Console.WriteLine(MinOperation(arr, n, k)); } } // This code is contributed // by Tushil |
PHP
<?php // PHP program to make // GCD of array a mutiple // of k. function MinOperation($a, $n, $k) { $result = 0; for ($i = 0; $i < $n; ++$i) { // If array value is // not 1 and it is // greater than k then // we can increase the // or decrease the remainder // obtained by dividing // k from the ith value of // array so that we get the // number which is either // closer to k or its multiple if ($a[$i] != 1 && $a[$i] > $k) { $result = $result + min($a[$i] % $k, $k - $a[$i] % $k); } else { // Else we only have one // choice which is to // increment the value // to make equal to k $result = $result + $k - $a[$i]; } } return $result; } // Driver code $arr = array(4, 5, 6); $n = sizeof($arr) / sizeof($arr[0]); $k = 5; echo MinOperation($arr, $n, $k); // This code is contributed // by @ajit ?> |
2
Attention reader! Don’t stop learning now. Get hold of all the important DSA concepts with the DSA Self Paced Course at a student-friendly price and become industry ready.
Recommended Posts:
- Minimum operations to make XOR of array zero
- Minimum gcd operations to make all array elements one
- Make all the array elements odd with minimum operations of given type
- Minimum delete operations to make all elements of array same
- Minimum number of operations on an array to make all elements 0
- Minimum no. of operations required to make all Array Elements Zero
- Minimum Increment operations to make Array unique
- Minimum operations to make all elements equal using the second array
- Minimum operations to make counts of remainders same in an array
- Find minimum operations needed to make an Array beautiful
- Minimum operations required to make all the array elements equal
- Minimum Cost to make all array elements equal using given operations
- Minimum Bitwise AND operations to make any two array elements equal
- Minimum operations required to make all the elements distinct in an array
- Minimum increment operations to make the array in increasing order
- Minimum pair sum operations to make array each element divisible by 4
- Minimum Bitwise XOR operations to make any two array elements equal
- Minimum operations required to make all Array elements divisible by K
- Minimum Bitwise OR operations to make any two array elements equal
- Minimum number of increment-other operations to make all array elements equal.
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.

