Problem Q
Hectic Harbour
There are two gantry cranes operating on the same gantry of
length
Input
The input consists of:
-
One line with integers
, and where-
( ) is the length of the gantry; -
( ) is the number of operations in the task list of the first gantry crane; -
( ) is the number of operations in the task list of the second gantry crane.
-
-
One line with
integers ( for all ), the tasks of the first gantry crane. -
One line with
integers ( for all ), the tasks of the second gantry crane.
The first and last task of both gantry cranes are at their
initial position, i.e.,
Output
Output the minimum number of time steps necessary for both gantry cranes to finish their assigned tasks.
Sample Explanation
In the first sample test case the gantry is of length 3, the first gantry crane has 2 operations in its task list while the second gantry crane has 4 operations in its task list. At least 6 time steps are necessary for both gantry cranes to finish their assigned tasks.
Time |
Gantry Crane 1 |
Gantry Crane 2 |
1 |
Operate at 1 |
Operate at 3 |
2 |
Operate at 1 |
Operate at 3 |
3 |
Idle at 1 |
Move from 3 to 2 |
4 |
Idle at 1 |
Operate at 2 |
5 |
Idle at 1 |
Move from 2 to 3 |
6 |
Idle at 1 |
Operate at 3 |
In the second sample test case the gantry is of length 4 and both gantry cranes have to perform 4 operations. At least 9 time steps are necessary for both gantry cranes to finish their assigned tasks.
Time |
Gantry Crane 1 |
Gantry Crane 2 |
1 |
Operate at 1 |
Operate at 4 |
2 |
Move from 1 to 2 |
Move from 4 to 3 |
3 |
Operate at 2 |
Operate at 3 |
4 |
Move from 2 to 3 |
Move from 3 to 4 |
5 |
Operate at 3 |
Idle at 4 |
6 |
Move from 3 to 2 |
Move from 4 to 3 |
7 |
Move from 2 to 1 |
Operate at 3 |
8 |
Operate at 1 |
Move from 3 to 4 |
9 |
Idle at 1 |
Operate at 4 |
Sample Input 1 | Sample Output 1 |
---|---|
3 2 4 1 1 3 3 2 3 |
6 |
Sample Input 2 | Sample Output 2 |
---|---|
4 4 4 1 2 3 1 4 3 3 4 |
9 |