Problem of the day
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.
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.
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