eolymp
bolt
Try our new interface for solving problems
Problems

Level Up

Level Up

Being a fan of MMORPGs, Steve was really excited when World of Warcraft Classic was announced. He started playing from the first day and now has only two levels to go till the maximum level. Of course, he doesn’t have as much time as he used to have when the game first appeared, so he really wants to finish these two levels as fast as possible.

In order to pass the first level, Steve needs s1 experience. Only after he gains it, he can move to the second level, in which he needs to get other s2 experience to pass it.

Steve has the list of n available quests. He knows that he may finish two levels with these quests. In order to pass the i-th quest, Steve needs ti minutes. As a result, he will get xi experience for this quest.

When Steve finishes a quest that takes him to the next level, the extra experience overflow is subtracted from the next level’s required experience. Once he levels up, all the quests that are left will offer less experience yi, but they will also require less time ri.

Note that if Steve finishes a quest, he can’t repeat this quest anymore (even in another level).

Given the list of quests, help Steve choose the order in which he will be doing the quests in order to finish the last two levels as fast as possible.

Input

The first line contains three integers n, s1, s2 (1n, s1, s2500) - the number of quests, experience required for the first level and experience required for the second level.

Each of the next n lines contains four integers xi, ti, yi, ri (1yi < xi500, 1ri < ti109) where xi and yi are the experience you will gain from the i-th quest on the 1-st and 2-nd level respectively and ti and ri are the number of minutes you need to spend in order to pass this quest on the 1-st and 2-nd level respectively.

Output

Print one number, representing the minimum number of minutes that Steve needs to finish two levels, or -1 if there is no way to complete quests to finish both levels.

Time limit 2 seconds
Memory limit 128 MiB
Input example #1
2 100 100
100 100 10 10
101 11 100 10
Output example #1
110
Input example #2
4 20 20
40 1000 20 20
6 6 5 5
10 10 1 1
10 10 1 1
Output example #2
40
Input example #3
2 20 5
10 10 5 5
10 10 5 5
Output example #3
-1
Source 2019 SEERC South Eastern European Regional Programming Contest, Vinnica & Bucharest, October 19, Problem B