题库练习 Set or Decrease
← 上一题 下一题 →

A14841 | Set or Decrease

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

You are given an integer array $a_1, a_2, \dots, a_n$ and integer $k$ .

In one step you can

- either choose some index $i$ and decrease $a_i$ by one (make $a_i = a_i - 1$ );
- or choose two indices $i$ and $j$ and set $a_i$ equal to $a_j$ (make $a_i = a_j$ ).

What is the minimum number of steps you need to make the sum of array $\sum\limits_{i=1}^{n}{a_i} \le k$ ? (You are allowed to make values of array negative).

输入格式

The first line contains a single integer $t$ ( $1 \le t \le 10^4$ ) — the number of test cases.

The first line of each test case contains two integers $n$ and $k$ ( $1 \le n \le 2 \cdot 10^5$ ; $1 \le k \le 10^{15}$ ) — the size of array $a$ and upper bound on its sum.

The second line of each test case contains $n$ integers $a_1, a_2, \dots, a_n$ ( $1 \le a_i \le 10^9$ ) — the array itself.

It's guaranteed that the sum of $n$ over all test cases doesn't exceed $2 \cdot 10^5$ .

输出格式

For each test case, print one integer — the minimum number of steps to make $\sum\limits_{i=1}^{n}{a_i} \le k$ .

输入输出样例

输入 #1
4
1 10
20
2 69
6 9
7 8
1 2 1 3 1 2 1
10 1
1 2 3 1 2 6 1 6 8 10
输出 #1
10
0
2
7
C++ 编辑器
输入
输出