시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 512 MB4401018227.703%

문제

Farmer John is bringing his $N$ cows, conveniently numbered $1 \ldots N$, to the county fair, to compete in the annual bovine talent show! His $i$th cow has a weight $w_i$ and talent level $t_i$, both integers.

Upon arrival, Farmer John is quite surprised by the new rules for this year's talent show:

(i) A group of cows of total weight at least $W$ must be entered into the show (in order to ensure strong teams of cows are competing, not just strong individuals), and

(ii) The group with the largest ratio of total talent to total weight shall win.

FJ observes that all of his cows together have weight at least $W$, so he should be able to enter a team satisfying (i). Help him determine the optimal ratio of talent to weight he can achieve for any such team.

입력

The first line of input contains $N$ ($1 \leq N \leq 250$) and $W$ ($1 \leq W \leq 1000$). The next $N$ lines each describe a cow using two integers $w_i$ ($1 \leq w_i \leq 10^6$) and $t_i$ ($1 \leq t_i \leq 10^3$).

출력

Please determine the largest possible ratio of total talent over total weight Farmer John can achieve using a group of cows of total weight at least $W$. If your answer is $A$, please print out the floor of $1000A$ in order to keep the output integer-valued (the floor operation discards any fractional part by rounding down to an integer, if the number in question is not already an integer).

예제 입력 1

3 15
20 21
10 11
30 31

예제 출력 1

1066

힌트

In this example, the best talent-to-weight ratio overall would be to use just the single cow with talent 11 and weight 10, but since we need at least 15 units of weight, the optimal solution ends up being to use this cow plus the cow with talent 21 and weight 20. This gives a talent-to-weight ratio of (11+21)/(10+20) = 32/30 = 1.0666666..., which when multiplied by 1000 and floored gives 1066.

출처

Olympiad > USA Computing Olympiad > 2017-2018 Season > USACO 2018 US Open Contest > Gold 3번

  • 데이터를 추가한 사람: jame0313