-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathGFG_MaximizeSumAfterKNegations.cpp
63 lines (56 loc) · 1.21 KB
/
GFG_MaximizeSumAfterKNegations.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/*
https://practice.geeksforgeeks.org/problems/maximize-sum-after-k-negations1149/1#
Maximize sum after K negations
*/
// { Driver Code Starts
#include<bits/stdc++.h>
using namespace std;
// } Driver Code Ends
class Solution{
public:
long long int maximizeSum(long long int a[], int n, int k)
{
long long int sum = 0;
sort(a, a+n);
int j=0;
while(k)
{
if(a[j]<=0)
{
a[j] = -a[j];
k--;
j++;
}
else if(k&1 && j!=0)
{
a[j-1] = -a[j-1];
break;
}
else if(k&1 && j==0)
{
a[j] = -a[j];
break;
}
else if (k%2 == 0)
break;
}
return accumulate(a, a+n, 0);
}
};
// { Driver Code Starts.
int main()
{
int t;
cin>>t;
while(t--)
{
int n, k;
cin>>n>>k;
long long int a[n+5];
for(int i=0;i<n;i++)
cin>>a[i];
Solution ob;
cout<<ob.maximizeSum(a, n, k)<<endl;
}
return 0;
} // } Driver Code Ends