Problem of the day
Ram went to a specialty candy store in Ninjaland which has 'N' candies with different costs.
The Candy shop gives a special offer to its customers. A customer can buy a single candy from the store and get at most 'K' different candies for free. Now, Ram is interested in knowing the maximum and the minimum amount he needs to spend for buying all the candies available in the store.
Note: In both cases, Ram must utilize the offer i.e. if 'K' or more candies are available, he must take 'K' candies for every candy purchase. If less than K candies are available, he must take all candies for a candy purchase.
For Example :
For 'N' = 5 and 'K' = 2
Let the cost of different candies in the store be: [9 8 2 6 4]
For the minimum amount:
Ram can buy a candy with cost 2 and take candies with costs 9 and 8 for free.
Then, he can buy a candy with cost 4 and take candy with cost 7 for free.
Thus, the minimum cost will be 6 i.e. 2 + 4.
For the maximum amount:
Ram can buy a candy with cost 9 and take candies with costs 2 and 6 for free.
Then, he can buy candy at cost 8 and take candy at cost 4 for free.
Thus, the minimum cost will be 17 i.e. 9 + 8.
Thus, Minimum = 6 and Maximum = 17.
The first line contains an integer 'T' which denotes the number of test cases or queries to be run. Then, the 'T' test cases follow.
The first line of each test case or query contains two space-separated integers 'N' and ‘K’ representing the number of candies available and the number of candies you get free for a single purchase respectively.
The second line of each test case contains 'N' single space-separated integers, representing the costs of the candies.
Output format:
For each test case, print two space-separated integers 'A' and 'B' where 'A' is the minimum amount and 'B' is the maximum amount in which Ram can buy all the candies.
Note:
You do not need to print anything, it has already been taken care of. Just implement the given function.
1 <= 'T' <= 5
1 <= 'N' <= 10^5
0 <= 'K' < N
1 <= 'COST' <= (10^9)
Where 'T' is the number of test cases, 'N' is the number of candies, 'K' is a type of candies and 'COST' is the cost of candies.
Time limit: 1 sec
1
4 2
3 2 1 4
3 7
For the minimum amount:
Ram can buy candy with cost 1 and take candies with costs 3 and 4 for free.
Then, he can buy candy with cost 2.
Thus, the minimum cost will be 3 i.e. 1 + 2.
For the maximum amount:
Ram can buy candy with cost 4 and take candies with costs 1 and 2 for free.
Then, he can buy candy with cost 3.
Thus, the minimum cost will be 7 i.e. 4 + 3.
2
5 2
9 8 2 6 4
3 0
1 5 4
6 17
10 10
The logical way of buying candies with minimum cost can be that Ram buys the candy with minimum cost and then takes top K expensive candies for free.
Similarly, for maximum cost, Ram can buy the candy with maximum cost and then take top K cheapest candies for free.
Let us apply the way that for minimum cost, Ram buys the candy with minimum cost and then takes top 'K' expensive candies for free.
Similarly, for maximum cost, Ram buys the candy with maximum cost and then takes the top 'K' cheapest candies for free.
O(N * logN), where ‘N’ is the number of candies in the store.
In the worst case, we are sorting the ‘COST’ array which takes N * logN time.
O(1).
In the worst case, constant extra space is used.