GSHOP - Rama and Friends


Mahesh and Ramashish are good friends. Each day Ramashish gives an array arr[0, 1, 2 ... n-1] of size 'n' to Mahesh and asks him to modify it.

Modifying an array means to execute the following operation exactly 'k' times:

  • "Replace any array element 'x' by '-x' i.e multiply it by -1."

Note that this operation can be performed on an array element zero, one or more times. But while modifying the array, Mahesh should also keep in mind that the sum of the elements of the final array should be maximum possible. Mahesh wants to go to sleep so he has to finish this job as soon as possible. Can you help him?

Input

First line of the input contains the number of test cases 'T'. Then follow 2T lines describing the test cases(Two lines for every test case).

For each test case, First line has two space separated integers 'n' (Number of elements in the array) and 'k' (Number of times to execute the operation described above) and the next line has 'n' space separated integers in non-decreasing order which are the array elements.

Constraints

  • 1 <= T <=10
  • 1 <= n <= 100
  • 1 <= k <= 100

For each 0 <= i <= n-1, -10^5 <= arr[i] <= 10^5.

Output

Output T lines, one for each test case denoting the maximum possible sum which can be obtained after modifying the array.

Example

Input:
1
3 1
-1 -1 1

Output:
1

hide comments
Prakhar Dev Gupta: 2015-08-18 16:16:05

Using sort function in C++ makes it easy ;)

Anurag Sharma: 2015-08-18 05:30:47

got ac after 8 wa :P
buddhi hari kar di

anshal dwivedi: 2015-08-12 16:30:58

got 2 WA because the say n>=1 but it may 0 also..

shreynik kumar: 2015-07-25 18:07:12

nice problem:)

sandeep__: 2015-06-19 08:45:38

What will be output for
6 4
-3 -2 -1 1 2 3
10 ?

hrishabh: 2015-06-18 17:05:52

NIce pblm Tel lga ke..

Dushyant Singh: 2015-05-29 09:51:38

Getting WA again and again. I am sure about all the test cases. -_-
Edit :- Got AC! 108 lines in C! *_*

Last edit: 2015-06-17 09:33:58
ASHUTOSH DWIVEDI: 2015-05-27 13:22:48

0.2 points for an easy one......AC in one go

:.Mohib.:: 2015-05-17 11:09:46

Easy... ==> AC

vagesh_verma: 2015-05-16 09:38:29

what would be the out put of
5 3
0 0 0 0 1
??


Added by:dungeon_master
Date:2014-01-24
Time limit:0.106s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:BF C CSHARP C++ 4.3.2 CPP C99 JAVA PAS-FPC PYTHON PY_NBC
Resource:My Own Problem