Open In App

Minimize Cost with Replacement with other allowed

Given an array of n integers, we can remove one element of the array by the following operation. 

Operation:We select any two numbers of the array and remove the larger number, Cost including in this operation is equal to the smaller number. 

You have to reduce the array into a single element by performing above operations with minimum cost.

Examples:

Input : arr[] = {3 4} 
Output :
We remove 4 by picking both elements and paying cost equal to smaller.

Input : 4 2 5 
Output :
We first pick 4, 2, remove 4 by paying cost 2. Then we remove 5 by again paying cost 2.

As we have to reduce the array to a single element, and it is given that if we select any two numbers, then the cost of removing the larger is equal to the smaller number. So to minimize the total cost, we always take the smallest number with other numbers to remove that.so total cost will be (n-1)*smallest number.

Implementation:




// C++ Program for the above approach
#include <bits/stdc++.h>
using namespace std;
 
// this function returns the minimum
// cost of the array
int getMinCost(int arr[], int n)
{
    int min_ele = *min_element(arr, arr+n);
    return min_ele * (n - 1);
}
 
int main()
{
    int arr[] = { 4, 2, 5 };
    int n = sizeof(arr)/sizeof(arr[0]);
    cout << getMinCost(arr, n) << endl;
    return 0;
}




// Java Program for the above approach
import java.util.Collections;
import java.util.Arrays;
 
public class GfG {
     
    // This function returns the minimum
    // cost of the array
    public static int getMinCost(Integer arr[], int n)
    {
        int min_ele = Collections.min(Arrays.asList(arr));
        return min_ele * (n - 1);
    }
     
    // Driver code
    public static void main(String []args){
         
        Integer[] arr = { 4, 2, 5 };
        int n = arr.length;
         
        System.out.println(getMinCost(arr, n));
    }
}
 
// This code is contributed by Rituraj Jain




# Python3 Program for the above approach
 
# Function returns the minimum
# cost of the array
def getMinCost(arr, n):
    min_ele = min(arr)
    return min_ele * (n - 1)
 
# Driver Code
arr = [4, 2, 5]
n = len(arr)
print(getMinCost(arr, n))
 
# This code is contributed
# by Shrikant13




// C# Program for the above approach
using System;
using System.Linq;
 
class GfG
{
     
    // This function returns the minimum
    // cost of the array
    public static int getMinCost(int []arr, int n)
    {
        int min_ele = arr.Min();
        return min_ele * (n - 1);
    }
     
    // Driver code
    public static void Main(String []args)
    {
        int[] arr = { 4, 2, 5 };
        int n = arr.Length;
         
        Console.WriteLine(getMinCost(arr, n));
    }
}
 
// This code contributed by Rajput-Ji




<?php
// PHP Program for the above approach
 
// this function returns the minimum
// cost of the array
function  getMinCost($arr, $n)
{
     $min_ele = min($arr);
    return $min_ele * ($n - 1);
}
// Code driven
    $arr =array (4, 2, 5 );
     $n = sizeof($arr)/sizeof($arr[0]);
    echo  getMinCost($arr, $n);
     
#This code contributed by ajit
?>




<script>
    // Javascript Program for the above approach
     
    // This function returns the minimum
    // cost of the array
    function getMinCost(arr, n)
    {
        let min_ele = Number.MAX_VALUE;
        for(let i = 0; i < n; i++)
        {
            min_ele = Math.min(min_ele, arr[i]);
        }
         
        return min_ele * (n - 1);
    }
     
    let arr = [ 4, 2, 5 ];
    let n = arr.length;
 
    document.write(getMinCost(arr, n));
     
</script>

Output
4

Complexity Analysis:


Article Tags :