2020 South Central USA Regional Contest

Start

2021-03-06 10:00 CET

2020 South Central USA Regional Contest

End

2021-03-06 15:00 CET
The end is near!
Contest is over.
Not yet started.
Contest is starting in -2 days 9:29:02

Time elapsed

5:00:00

Time remaining

0:00:00

Problem B
Bad Packing

We have a knapsack of integral capacity and some objects of assorted integral sizes. We attempt to fill the knapsack up, but unfortunately, we are really bad at it, so we end up wasting a lot of space that can’t be further filled by any of the remaining objects. In fact, we are optimally bad at this! How bad can we possibly be?

Figure out the least capacity we can use where we cannot place any of the remaining objects in the knapsack. For example, suppose we have $3$ objects with weights $3$, $5$ and $3$, and our knapsack has capacity $6$. If we foolishly pack the object with weight $5$ first, we cannot place either of the other two objects in the knapsack. That’s the worst we can do, so $5$ is the answer.

Input

The first line of input contains two integers $n$ ($1 \le n \le 1\, 000$) and $c$ ($1 \le c \le 10^5$), where $n$ is the number of objects we want to pack and $c$ is the capacity of the knapsack.

Each of the next $n$ lines contains a single integer $w$ ($1 \le w \le c$). These are the weights of the objects.

Output

Output a single integer, which is the least capacity we can use where we cannot place any of the remaining objects in the knapsack.

Sample Input 1 Sample Output 1
3 6
3
5
3
5