GUPTA MECHANICAL

IN THIS WEBSITE I CAN TELL ALL ABOUT TECH. TIPS AND TRICKS APP REVIEWS AND UNBOXINGS ALSO TECH. NEWS .............

Sunday 8 May 2022

In The Green Zone CodeChef Solution | CodeChef Problem Solution 2022

There are N cans lying on the X-axis at points Xi (1iN). Each of the N cans is associated with two values Ai and Bi. Also, the segment between the points L and R (LR) is considered to be green zone including the points L and R. There are two types of operations -

1. Select a can i out of the N cans and move it one unit in either direction along the axis, i.e. if before the operation can is at Xi then after the operation, it moves to either Xi+1 or Xi1. This costs Bi coins and it can be performed any number of times for each of the cans.

Solution Click Below:-  CLICK HERE

2. Choose any integer k and shift the green zone to the segment between L and R, where L and R are the mirror images of points R and L with respect to line X=k respectively. This operation should be performed exactly once.

After all the operations, you get number of coins equal to sum of values of Ai of the cans which lie in the final green zone. We define the net coins as:
Number of coins you get - Number of coins spent








Find the maximum possible net coins you can earn.

Input Format

  • First line will contain T, number of testcases. Then the testcases follow.
  • Each of the testcases consists of four lines.
  • First lines consists of three integers NL and R.
  • Next line consist of N space separated integers X1,X2,...,XN.
  • Next line consist of N space separated integers A1,A2,...,AN.
  • Next line consist of N space separated integers B1,B2,...,BN.

Output Format

For each testcase, output in a single integer, the maximum number of net coins you can earn.

Constraints

  • 1T1000
  • 1N3105
  • 1Ai,Bi109
  • 109LR109
  • 109Xi109
  • Sum of N over all test cases does not exceed 3105

Sample Input 1 

2
1 7 10
2
6
1
3 7 10
2 8 1
6 20 1
1 3 2

Sample Output 1 

6
22

Explanation

Test case 1 : Lets choose the axis at X=5 and Shift the green zone in the range [0,3], such that can lies in green zone. So, there is no need for operation of type 1 and total number of coins earned is A1, i.e. 6.

Test case 2 : Choose the axis at X=8, so the new green zone lies in the region [6,9]. Move the can 1 to X=6. Number of coins received is equal to A1+A2 and number of coins spent is 4B1. So, the net coins earned is 20+64=22. This is also the maximum possible.


Join Now for Solution:- 

No comments:

Post a Comment