please answer this using c/c++ or java | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

please answer this using c/c++ or java

Chef has gone shopping with his 5-year old son. They have bought N items so far. The items are numbered from 1 to N, and the item i weighs Wi grams. Chef's son insists on helping his father in carrying the items. He wants his dad to give him a few items. Chef does not want to burden his son. But he won't stop bothering him unless he is given a few items to carry. So Chef decides to give him some items. Obviously, Chef wants to give the kid less weight to carry. However, his son is a smart kid. To avoid being given the bare minimum weight to carry, he suggests that the items are split into two groups, and one group contains exactly K items. Then Chef will carry the heavier group, and his son will carry the other group. Help the Chef in deciding which items should the son take. Your task will be simple. Tell the Chef the maximum possible difference between the weight carried by him and the weight carried by the kid. Input: The first line of input contains an integer T, denoting the number of test cases. Then T test cases follow. The first line of each test contains two space-separated integers N and K. The next line contains N space-separated integers W1, W2, ..., WN. Output: For each test case, output the maximum possible difference between the weights carried by both in grams. Constraints: 1 ≤ T ≤ 100 1 ≤ K < N ≤ 100 1 ≤ Wi ≤ 100000 (105) Example: Input: 2 5 2 8 4 5 2 10 8 3 1 1 1 1 1 1 1 1 Output: 17 2

30th Jul 2016, 5:12 AM
Rishabh Joshi
Rishabh Joshi - avatar
2 Answers
0
It seems like a C++ exercise.
30th Jul 2016, 8:33 AM
Paula Ariton
Paula Ariton - avatar
0
Okay will start with the items class but the problem is we can't run it on this platform
30th Jul 2016, 11:02 AM
Paul Bereobong Clement
Paul Bereobong Clement - avatar