Marita's little brother has left toys all over the living room floor! Fortunately, Marita has developed special robots to clean up the toys. She needs your help to determine which robots should pick up which toys.
There are toys, each with an integer weight and an integer size . Robots come in two kinds: weak and small.
- There are weak robots. Each weak robot has a weight limit , and can carry any toy of weight strictly less than . The size of the toy does not matter.
- There are small robots. Each small robot has a size limit , and can carry any toy of size strictly less than . The weight of the toy does not matter.
Each of Marita's robots takes one minute to put each toy away. Different robots can put away different toys at the same time.
Your task is to determine whether Marita's robots can put all the toys away, and if so, the shortest time in which they can do this.
Examples
As a first example, suppose there are weak robots with weight limits , small robots with size limits , and toys as follows:
Toy number | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 |
---|---|---|---|---|---|---|---|---|---|---|
Weight | 4 | 8 | 2 | 7 | 1 | 5 | 3 | 8 | 7 | 10 |
Size | 6 | 5 | 3 | 9 | 8 | 1 | 3 | 7 | 6 | 5 |
The shortest time to put all the toys away is three minutes:
Weak robot 0 | Weak robot 1 | Weak robot 2 | Small robot 0 | Small robot 1 | |
---|---|---|---|---|---|
First minute | Toy 0 | Toy 4 | Toy 1 | Toy 6 | Toy 2 |
Second minute | Toy 5 | Toy 3 | Toy 8 | ||
Third minute | Toy 7 | Toy 9 |
As a second example, suppose there are weak robots with weight limits , small robot with size limit , and toys as follows:
Toy number | 0 | 1 | 2 |
---|---|---|---|
Weight | 3 | 5 | 2 |
Size | 1 | 3 | 2 |
Implementation
You should submit a file implementing the function putaway()
as follows:
Your Function: putaway()
C/C++
int putaway(int A, int B, int T, int X[], int Y[], int W[], int S[]);
Pascal
function putaway(A, B, T : LongInt; var X, Y, W, S : array of LongInt) : LongInt;
Description
This function should calculate the smallest number of minutes required for the robots to put all of the toys away, or should return if this is not possible.
Parameters
- : The number of weak robots.
- : The number of small robots.
- : The number of toys.
- : An array of length containing integers that specify the weight limit for each weak robot.
- : An array of length containing integers that specify the size limit for each small robot.
- : An array of length containing integers that give the weight of each toy.
- : An array of length containing integers that give the size of each toy.
- Returns: The smallest number of minutes required to put all of the toys away, or if this is not possible.
Sample Session
The following session describes the first example above:
Parameter | Value |
---|---|
A | 3 |
B | 2 |
T | 10 |
X | {6, 2, 9} |
Y | {4, 7} |
W | {4, 8, 2, 7, 1, 5, 3, 8, 7, 10} |
S | {6, 5, 3, 9, 8, 1, 3, 7, 6, 5} |
Returns | 3 |
The following session describes the second example above:
Parameter | Value |
---|---|
A | 2 |
B | 1 |
T | 3 |
X | {2, 5} |
Y | {2} |
W | {3, 5, 2} |
S | {1, 3, 2} |
Returns | -1 |
Constraints
- and
Subtasks
Subtask | Points | Additional Input Constraints |
---|---|---|
1 | 14 | and (exactly two toys and two robots) |
2 | 14 | (all robots are weak) |
3 | 25 | and |
4 | 37 | and |
5 | 10 | None |
Comments