📌  相关文章
📜  找出购买所有N个糖果的最小和最大金额

📅  最后修改于: 2021-04-24 16:09:26             🧑  作者: Mango

在糖果店中,有N种不同类型的糖果可用,并且提供了所有N种不同类型的糖果的价格。糖果店也提供诱人的优惠。我们可以从商店购买一个糖果,最多免费获得K个其他糖果(所有糖果均为不同类型)。

  1. 找出我们要购买所有N种不同糖果所需的最低金额。
  2. 找出我们要购买所有N种不同糖果所需的最大金额。

在这两种情况下,我们都必须利用报价并获得最大可能的糖果。如果有k个或更多的糖果,则每次购买糖果都必须取k个糖果。如果可用的糖果少于k个,我们必须购买所有糖果才能购买糖果。

例子:

Input :  
price[] = {3, 2, 1, 4}
k = 2
Output :  
Min = 3, Max = 7
Explanation :
Since k is 2, if we buy one candy we can take 
atmost two more for free.
So in the first case we buy the candy which 
costs 1 and take candies worth 3 and 4 for 
free, also you buy candy worth 2 as well.
So min cost = 1 + 2 = 3.
In the second case we buy the candy which 
costs 4 and take candies worth 1 and 2 for 
free, also We buy candy worth 3 as well.
So max cost = 3 + 4 = 7.

需要注意的重要一件事是,我们必须使用此报价,并在每次购买糖果时获得最大数量的糖果。因此,如果我们想将钱减少到最低限度,就必须以最低的成本购买糖果,并免费获得最高成本的糖果。为了使金钱最大化,我们必须做相反的事情。以下是基于此的算法。

First Sort the price array.

For finding minimum amount :
  Start purchasing candies from starting 
  and reduce k free candies from last with
  every single purchase.

For finding maximum amount : 
   Start purchasing candies from the end 
   and reduce k free candies from starting 
   in every single purchase.

下图说明了上述方法:

最低金额:

最高金额:

下面是上述方法的实现:

C++
// C++ implementation to find the minimum
// and maximum amount
#include 
using namespace std;
 
// Function to find the minimum amount
// to buy all candies
int findMinimum(int arr[], int n, int k)
{
    int res = 0;
    for (int i = 0; i < n; i++) {
        // Buy current candy
        res += arr[i];
 
        // And take k candies for free
        // from the last
        n = n - k;
    }
    return res;
}
 
// Function to find the maximum amount
// to buy all candies
int findMaximum(int arr[], int n, int k)
{
    int res = 0, index = 0;
 
    for (int i = n - 1; i >= index; i--)
    {
        // Buy candy with maximum amount
        res += arr[i];
 
        // And get k candies for free from
        // the starting
        index += k;
    }
    return res;
}
 
// Driver code
int main()
{
    int arr[] = { 3, 2, 1, 4 };
    int n = sizeof(arr) / sizeof(arr[0]);
    int k = 2;
    sort(arr, arr + n);
 
    // Function call
    cout << findMinimum(arr, n, k) << " "
         << findMaximum(arr, n, k) << endl;
    return 0;
}


Java
// Java implementation to find the
// minimum and maximum amount
import java.util.*;
 
class GFG {
 
    // Function to find the minimum
    // amount to buy all candies
    static int findMinimum(int arr[], int n, int k)
    {
        int res = 0;
        for (int i = 0; i < n; i++) {
            // Buy current candy
            res += arr[i];
 
            // And take k candies for free
            // from the last
            n = n - k;
        }
        return res;
    }
 
    // Function to find the maximum
    // amount to buy all candies
    static int findMaximum(int arr[], int n, int k)
    {
        int res = 0, index = 0;
 
        for (int i = n - 1; i >= index; i--)
        {
            // Buy candy with maximum amount
            res += arr[i];
 
            // And get k candies for free from
            // the starting
            index += k;
        }
        return res;
    }
 
    // Driver code
    public static void main(String[] args)
    {
        int arr[] = { 3, 2, 1, 4 };
        int n = arr.length;
        int k = 2;
        Arrays.sort(arr);
 
        // Function call
        System.out.println(findMinimum(arr, n, k) + " "
                           + findMaximum(arr, n, k));
    }
}
 
// This code is contributed by prerna saini


Python3
# Python implementation
# to find the minimum
# and maximum amount
 
# Function to find
# the minimum amount
# to buy all candies
 
 
def findMinimum(arr, n, k):
 
    res = 0
    i = 0
    while(n):
 
        # Buy current candy
        res += arr[i]
 
        # And take k
        # candies for free
        # from the last
        n = n-k
        i += 1
    return res
 
# Function to find
# the maximum amount
# to buy all candies
 
 
def findMaximum(arr, n, k):
 
    res = 0
    index = 0
    i = n-1
    while(i >= index):
 
        # Buy candy with
        # maximum amount
        res += arr[i]
 
        # And get k candies
        # for free from
        # the starting
        index += k
        i -= 1
 
    return res
 
# Driver code
arr = [3, 2, 1, 4]
n = len(arr)
k = 2
 
arr.sort()
 
# Function call
print(findMinimum(arr, n, k), " ",
      findMaximum(arr, n, k))
 
# This code is contributed
# by Anant Agarwal.


C#
// C# implementation to find the
// minimum and maximum amount
using System;
 
public class GFG {
 
    // Function to find the minimum
    // amount to buy all candies
    static int findMinimum(int[] arr, int n, int k)
    {
        int res = 0;
        for (int i = 0; i < n; i++)
        {
 
            // Buy current candy
            res += arr[i];
 
            // And take k candies for
            // free from the last
            n = n - k;
        }
 
        return res;
    }
 
    // Function to find the maximum
    // amount to buy all candies
    static int findMaximum(int[] arr, int n, int k)
    {
        int res = 0, index = 0;
 
        for (int i = n - 1; i >= index; i--)
        {
            // Buy candy with maximum
            // amount
            res += arr[i];
 
            // And get k candies for free
            // from the starting
            index += k;
        }
 
        return res;
    }
 
    // Driver code
    public static void Main()
    {
        int[] arr = { 3, 2, 1, 4 };
        int n = arr.Length;
        int k = 2;
        Array.Sort(arr);
 
        // Function call
        Console.WriteLine(findMinimum(arr, n, k) + " "
                          + findMaximum(arr, n, k));
    }
}
 
// This code is contributed by Sam007.


PHP
= $index; $i--)
    {
         
        // Buy candy with maximum amount
        $res += $arr[$i];
 
        // And get k candies
        // for free from
        // the starting
        $index += $k;
    }
    return $res;
}
 
    // Driver Code
    $arr = array(3, 2, 1, 4);
    $n = sizeof($arr);
    $k = 2;
    sort($arr); sort($arr,$n);
 
    // Function call
    echo findMinimum($arr, $n, $k)," "
            ,findMaximum($arr, $n, $k);
    return 0;
 
// This code is contributed by nitin mittal.
?>


C++
// cpp implementation
// to find the minimum
// and maximum amount
#include 
using namespace std;
 
// function to find the maximum
// and the minimum cost required
void find(vector arr, int n, int k)
{
 
    // Sort the array
    sort(arr.begin(), arr.end());
    int b = ceil(n / k * 1.0);
    int min_sum = 0, max_sum = 0;
 
    for(int i = 0; i < b; i++)
      min_sum += arr[i];
    for(int i = 2; i < arr.size(); i++)
      max_sum += arr[i];
 
    // print the minimum cost
    cout << "minimum " << min_sum << endl;
 
    // print the maximum cost
    cout << "maximum " << max_sum << endl;
 
}
 
 
// Driver code
int main()
{
  vector arr = {3, 2, 1, 4};
  int n = arr.size();
  int k = 2;
 
  // Function call
  find(arr,n,k);
}
 
// This code is contributed by mohit kumar 29.


Python3
# Python implementation
# to find the minimum
# and maximum amount
 
#import ceil function
from math import ceil
 
# function to find the maximum
# and the minimum cost required
def find(arr,n,k):
     
    # Sort the array
    arr.sort()
    b = int(ceil(n/k))
     
    # print the minimum cost
    print("minimum ",sum(arr[:b]))
     
    # print the maximum cost
    print("maximum ", sum(arr[-b:]))
     
     
# Driver Code
arr = [3, 2, 1, 4]
n = len(arr)
k = 2
 
# Function call
find(arr,n,k)


输出
3 7

时间复杂度: O(n log n)

另一个实现:
我们可以使用最小的整数函数(Ceiling 函数)的帮助,使用内置的ceil()函数来实现:

以下是Python的实现:

C++

// cpp implementation
// to find the minimum
// and maximum amount
#include 
using namespace std;
 
// function to find the maximum
// and the minimum cost required
void find(vector arr, int n, int k)
{
 
    // Sort the array
    sort(arr.begin(), arr.end());
    int b = ceil(n / k * 1.0);
    int min_sum = 0, max_sum = 0;
 
    for(int i = 0; i < b; i++)
      min_sum += arr[i];
    for(int i = 2; i < arr.size(); i++)
      max_sum += arr[i];
 
    // print the minimum cost
    cout << "minimum " << min_sum << endl;
 
    // print the maximum cost
    cout << "maximum " << max_sum << endl;
 
}
 
 
// Driver code
int main()
{
  vector arr = {3, 2, 1, 4};
  int n = arr.size();
  int k = 2;
 
  // Function call
  find(arr,n,k);
}
 
// This code is contributed by mohit kumar 29.

Python3

# Python implementation
# to find the minimum
# and maximum amount
 
#import ceil function
from math import ceil
 
# function to find the maximum
# and the minimum cost required
def find(arr,n,k):
     
    # Sort the array
    arr.sort()
    b = int(ceil(n/k))
     
    # print the minimum cost
    print("minimum ",sum(arr[:b]))
     
    # print the maximum cost
    print("maximum ", sum(arr[-b:]))
     
     
# Driver Code
arr = [3, 2, 1, 4]
n = len(arr)
k = 2
 
# Function call
find(arr,n,k)
输出
('minimum ', 3)
('maximum ', 7)