|
||||||||||
WashTime Limit: 20000/10000 MS (Java/Others) Memory Limit: 64000/64000 K (Java/Others)Total Submission(s): 4665 Accepted Submission(s): 1208 Problem Description Mr.Panda is about to engage in his favourite activity doing laundry! He¡¯s brought L indistinguishable loads of laundry to his local laundromat, which has N washing machines and M dryers.The $i^{th}$ washing machine takes $W_i$ minutes to wash one load of laundry, and the $i^{th}$ dryer takes Di minutes to dry a load of laundry. At any point in time, each machine may only be processing at most one load of laundry. As one might expect, Panda wants to wash and then dry each of his L loads of laundry. Each load of laundry will go through the following steps in order: 1. A non-negative amount of time after Panda arrives at the laundromat, Panda places the load in an unoccupied washing machine i. 2. Wi minutes later, he removes the load from the washing machine, placing it in a temporary holding basket (which has unlimited space) 3. A non-negative amount of time later, he places the load in an unoccupied dryer j 4. Dj minutes later, he removes the load from the dryer Panda can instantaneously add laundry to or remove laundry from a machine. Help Panda minimize the amount of time (in minutes after he arrives at the laundromat) after which he can be done washing and drying all L loads of laundry! Input The first line of the input gives the number of test cases, T. T test cases follow. Each test case consists of three lines. The first line contains three integer L, N, and M. The second line contains N integers $W_1, W_2, ... , W_N$ representing the wash time of each wash machine. The third line contains M integers $D_1, D_2, ..., D_M$ representing the dry time of each dryer. Output For each test case, output one line containing ¡°Case #x: y¡±, where x is the test case number (starting from 1) and y is the minimum time it will take Panda to finish his laundry. limits$\bullet 1 ¡Ü T ¡Ü 100$. $\bullet 1 ¡Ü L ¡Ü 10^6$. $\bullet 1 ¡Ü N, M ¡Ü 10^5$. $\bullet 1 ¡Ü W_i, D_i ¡Ü 10^9$. Sample Input
Sample Output
Source | ||||||||||
|