[Solution] Maximum Gain Round D 2022 | Kick Start 2022 Solution
Problem
Charles is participating in an event of Crowdsource tasks and he is most enthusiastic to gain the maximum points from there! There are two Crowdsource tasks: Audio Validation Task and Image Labeler Task. Each task consists of a list of questions. Charles is given two arrays ( and ) representing the two tasks. Each element of an array indicates the number of points that Charles will gain by answering the corresponding question.
Charles is allowed to answer questions in total, from both tasks, one at a time. At each step, he is allowed to choose a task (that is, choose one of the two arrays) that has remaining unanswered questions. He is then allowed to answer either the first or the last question, from the list of remaining questions of this task. Once he answers the question, he gets the corresponding points and the answered question is removed from the task.
Can you help Charles choose the questions that will give him the maximum possible points?
Input
The first line of the input gives the number of test cases, . test cases follow.
The first line of each test case contains an integer , which denotes the number of elements in the first array.
The second line of each test case contains integers . denotes the points gained for answering the -th question of Audio Validation Task.
The third line of each test case contains an integer , which denotes the number of elements in the second array.
The fourth line of each test case contains integers . denotes the points gained for answering the -th question of Image Labeler Task.
The fifth line of each test case contains an integer , which denotes the number of elements to be selected in total, from both arrays, using the process described above.
Output
For each test case, output one line containing Case #:
, where is the test case number (starting from 1) and is the maximum number of points that Charles can gain in this test case.
Limits
Time limit: 30 seconds.
Memory limit: 1 GB.
.
.
.
, for all .
.
Test Set 1
.
Test Set 2
.
No comments:
Post a Comment