You are given 2 integers arrays A and B of size N, for every index i, you could either add Bi to Ai or subtract Bi from Ai, you are only allowed to do atmost K add operations. For a subarray of size L print the largest possible sum after doing the above operations.
Input format
Output format
Constraints
1≤N≤105
1≤K≤L≤N
−109≤Ai,Bi≤109
The sum of N over all test case does not exceed 2⋅105
Here we can use add operation on 4 and 5, and subtract the rest of them.