COCI '11 Contest 3 #6 Traka

View as PDF

Submit solution


Points: 20 (partial)
Time limit: 1.0s
Memory limit: 128M

Problem type

As mentioned before, there are N workers in Mirko's factory. They are manufacturing cars on a conveyor belt, in a pipeline fashion. Workers are denoted by numbers 1 – leftmost, to N - rightmost. Each of the workers does his specific job and requires certain amount of time to complete it.

Production of a single car starts with worker #1 (Mirko). After he had finished with his part of the job, worker #2 takes over, after him #3... When worker #N finishes with his part, the car is finished. Mirko and his workers have to produce M cars and they must produce them in order 1 to M.

For every worker i we know T_i - time required for him to do his part of the job. For every car j we know factor of assembly complexity F_j. Time in minutes for worker i to finish his part of the job on the car j is computed as a product T_iF_j.

After some worker has finished working on a car, he has to give it to the next worker instantly, without any delay (weird company policy). For that reason, the worker receiving the car has to be free (he must not be working on some other car). In order to fulfill this condition, Mirko has to choose a good timing to start building a new car. To be efficient, he'll wait the minimum number of minutes until he is certain that all of the conditions described are met.

Write a program which will, given worker times and factors of complexity for each car, compute total time required for producing all of the cars.

Input Specification

First line of input contains space-separated positive integers N (1 \leq N \leq 100\,000), number of workers, and M (1 \leq M \leq 100\,000), number of cars.

i-th of the following N lines contains worker time T_i for the worker i.

j-th of the following M lines contains factor of complexity F_j for the car j.

These conditions hold: 1 \leq T_i \leq 10\,000, 1 \leq F_j \leq 10\,000.

Output Specification

First and only line of output has to contain required number of minutes.

Scoring

In test cases worth 40\% of total points, N and M will be at most 1\,000.

Sample Input 1

3 3
2
1
1
2
1
1

Sample Output 1

11

Explanation for Sample Output 1

After four minutes, first worker finishes working on the first car. He might start working on the second car immediately, but that would violate a condition that cars have to be passed to next workers as soon as they're done (after seven minutes second worker would finish working on his part of second car, but the third worker would not be free to take over as he would still be working on the first car). That is the reason production of the second car is started after five minutes. Production of the third car starts after seven minutes. First car is finished after eight, second after nine and third after eleven seconds. Total time is then 11.

Sample Input 2

3 3
2
3
3
2
1
2

Sample Output 2

29

Sample Input 3

4 5
3
2
2
2
3
1
2
1
2

Sample Output 3

55

Comments

There are no comments at the moment.