A parking garage has
parking spaces, numbered from
to
inclusive. The garage opens
empty each morning and operates in the following way throughout the day. Whenever a car
arrives at the garage, the attendants check whether there are any parking spaces available. If
there are none, then the car waits at the entrance until a parking space is released. If a parking
space is available, or as soon as one becomes available, the car is parked in the available
parking space. If there is more than one available parking space, the car will be parked at the
space with the smallest number. If more cars arrive while some car is waiting, they all line up in a
queue at the entrance, in the order in which they arrived. Then, when a parking space becomes
available, the first car in the queue (i.e., the one that arrived the earliest) is parked there.
The cost of parking in dollars is the weight of the car in kilograms multiplied by the specific rate of its parking space. The cost does not depend on how long a car stays in the garage.
The garage operator knows that today there will be M cars coming and he knows the order of their arrivals and departures. Help him calculate how many dollars his revenue is going to be today.
Write a program that, given the specific rates of the parking spaces, the weights of the cars and the order in which the cars arrive and depart, determines the total revenue of the garage in dollars.
- the number of parking spaces
- the number of cars
- the rate of parking space
in dollars per kilogram
- the weight of car
in kilograms
Your program must read from standard input the following data:
and
, separated by a space.
lines describe the rates of the parking spaces. The
th of these lines contains a
single integer
, the rate of parking space number
in dollars per kilogram.
lines describe the weights of the cars. The cars are numbered from
to
inclusive in no particular order. The
th of these
lines contains a single integer
, the
weight of car
in kilograms.
lines describe the arrivals and departures of all cars in chronological order. A
positive integer
indicates that car number
arrives at the garage. A negative integer
indicates that car number i departs from the garage. No car will depart from the garage
before it has arrived, and all cars from
to
inclusive will appear exactly twice in this
sequence, once arriving and once departing. Moreover, no car will depart from the garage
before it has parked (i.e., no car will leave while waiting on the queue).
Your program must write to standard output a single line containing a single integer: the total number of dollars that will be earned by the garage operator today.
For a number of tests worth 40 points there will always be at least one available parking space for every arriving car. In these cases no car will ever have to wait for a space.
For the input data:
3 4 2 3 5 200 100 300 800 3 2 -3 1 4 -4 -2 -1
the correct result is:
5300
Explanation of the example: Car number 3 goes to space number 1 and pays
dollars.
Car number 2 goes to space number 2 and pays
dollars.
Car number 1 goes to space number 1 (which was released by car number 3) and pays
dollars.
Car number 4 goes to space number 3 (the last remaining) and pays
dollars.
For the input data:
2 4 5 2 100 500 1000 2000 3 1 2 4 -1 -3 -2 -4
the correct result is:
16200
Explanation of the example: Car number 3 goes to space number 1 and pays
dollars.
Car number 1 goes to space number 2 and pays
dollars.
Car number 2 arrives and has to wait at the entrance.
Car number 4 arrives and has to wait at the entrance behind car number 2.
When car number 1 releases its parking space, car number 2 parks there and pays
dollars.
When car number 3 releases its parking space, car number 4 parks there and pays
dollars.
In the event of technical difficulties with Szkopuł, please contact us via email at szkopul@fri.edu.pl.
If you would like to talk about tasks, solutions or technical problems, please visit our Discord servers. They are moderated by the community, but members of the support team are also active there.