Problem G
ICPC Camp
John is a leading organizer of this year’s North America ICPC training camp. The camp lasts several days. On each day, there will be a lecture introducing two problems: one classical problem and one creative problem. Each problem can only be introduced once during the entire camp. Every problem has an integer difficulty level.
John knows that the lecture on each day should not be too
overwhelming. Therefore, the sum of the difficulties of the two
problems in a single day shall not exceed some fixed value.
Also, the two problems on each day should be roughly on the
same level. Let
If John chooses problems well and arranges them wisely, what
is the smallest
Input
The first line of input contains four space-separated
integers
Each of the next
Each of the next
Output
Output a single integer, which is the smallest
Sample Input 1 | Sample Output 1 |
---|---|
3 4 5 10 3 4 4 9 0 1 5 6 6 |
2 |
Sample Input 2 | Sample Output 2 |
---|---|
4 4 4 15 1 5 10 12 1 3 10 14 |
13 |
Sample Input 3 | Sample Output 3 |
---|---|
4 4 4 10 1 12 5 10 1 10 3 14 |
-1 |