CF609A.USB Flash Drives

传统题 时间 2000 ms 内存 256 MiB 3 尝试 1 已通过 1 标签

USB Flash Drives

Sean is trying to save a large file to a USB flash drive. He has n USB flash drives with capacities equal to a1, a2, ..., a**n megabytes. The file size is equal to m megabytes.

Find the minimum number of USB flash drives needed to write Sean's file, if he can split the file between drives.

Input

The first line contains positive integer n (1 ≤ n ≤ 100) — the number of USB flash drives.

The second line contains positive integer m (1 ≤ m ≤ 105) — the size of Sean's file.

Each of the next n lines contains positive integer a**i (1 ≤ a**i ≤ 1000) — the sizes of USB flash drives in megabytes.

It is guaranteed that the answer exists, i. e. the sum of all a**i is not less than m.

Output

Print the minimum number of USB flash drives to write Sean's file, if he can split the file between drives.

Note

In the first example Sean needs only two USB flash drives — the first and the third.

In the second example Sean needs all three USB flash drives.

In the third example Sean needs only one USB flash drive and he can use any available USB flash drive — the first or the second.

Samples

3
5
2
1
3
2
3
6
2
3
2
3
2
5
5
10
1

在线编程 IDE

建议全屏模式获得最佳体验