Contest Day 1 - JOI Open Contest
Prof. K is the President of the Japanese Committee for the International Olympiad in Informatics. He loves fortune-telling. He is always doing several kinds of fortune-tellings. Today, he decided to do a fortune-telling using cards to see the results of the Japanese delegation of this year's IOI.
An integer is written on each side of each card. Integers on both sides of a card are not necessarily equal. If you put a card on a table so that you can see the integer on one side, you cannot see the integer on the other side.
The fortune-telling is done as follows.
- First, Prof. K will put cards on a table. The cards are numbered from to . The integer is written on one side of the card , and the integer is written on the other side of the card . He will put the cards on the table so that is shown on the card for each .
- For , he will do the following operation: "If the integer shown on each card is less than or equal to , he will turn it upside down."
- The result of the fortune-telling is the sum of the integers shown on the cards on the table after these operations are finished.
At some point, Prof. K realized that deciding which cards are to be turned upside down is a boring job. He finally gave up doing the fortune-telling by using the cards. He only wants to know the sum of the integers shown on the cards on the table after these operations are finished.
Task
Write a program which, given the integers written on the cards and the information of the operations, calculates the sum of the integers shown on the cards on the table after all operations are finished.
Input
Read the following data from the standard input.
- The first line contains two space separated integers and . This means there are cards and the number of operations is .
- The line of the following lines contains two space separated integers and . This means the integers written on the card are and .
- The line of the following lines contains an integer . This means, in the operation, if the integer shown on a card is less than or equal to , it will be turned upside down.
Output
To the standard output, write the sum of the integers shown on the cards on the table after operations are finished.
Constraints
All input data satisfy the following conditions:
- .
- .
- .
- .
- .
Subtask 1 [4 points]
The following conditions are satisfied:
Subtask 2 [31 points]
The following conditions are satisfied:
Subtask 3 [65 points]
No additional constraints.
Sample Input
5 3
4 6
9 1
8 8
4 2
3 7
8
2
9
Sample Output
18
Explanation of Output for Sample Input
First, the five integers shown on the cards are , respectively. The operations are done as follows.
- If the integer shown on each card is less than or equal to , it will be turned upside down. After the operation, the integers shown on the cards are , respectively.
- If the integer shown on each card is less than or equal to , it will be turned upside down. After the operation, the integers shown on the cards are , respectively.
- If the integer shown on each card is less than or equal to , it will be turned upside down. After the operation, the integers shown on the cards are , respectively.
After all operations are finished, the sum of the integers shown on the cards on the table is .
Comments