题库练习 New Colony
← 上一题 下一题 →

A14156 | New Colony

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

题目描述

After reaching your destination, you want to build a new colony on the new planet. Since this planet has many mountains and the colony must be built on a flat surface you decided to flatten the mountains using boulders (you are still dreaming so this makes sense to you).

![](/uploads/acgo/image/6dd78addd0699fe7_0b23f80c72c1.jpeg)You are given an array $h_1, h_2, \dots, h_n$ , where $h_i$ is the height of the $i$ -th mountain, and $k$ — the number of boulders you have.

You will start throwing boulders from the top of the first mountain one by one and they will roll as follows (let's assume that the height of the current mountain is $h_i$ ):

- if $h_i \ge h_{i + 1}$ , the boulder will roll to the next mountain;
- if $h_i < h_{i + 1}$ , the boulder will stop rolling and increase the mountain height by $1$ ( $h_i = h_i + 1$ );
- if the boulder reaches the last mountain it will fall to the waste collection system and disappear.

You want to find the position of the $k$ -th boulder or determine that it will fall into the waste collection system.

输入格式

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

Each test case consists of two lines. The first line in each test case contains two integers $n$ and $k$ ( $1 \le n \le 100$ ; $1 \le k \le 10^9$ ) — the number of mountains and the number of boulders.

The second line contains $n$ integers $h_1, h_2, \dots, h_n$ ( $1 \le h_i \le 100$ ) — the height of the mountains.

It is guaranteed that the sum of $n$ over all test cases does not exceed $100$ .

输出格式

For each test case, print $-1$ if the $k$ -th boulder will fall into the collection system. Otherwise, print the position of the $k$ -th boulder.

输入输出样例

输入 #1
4
4 3
4 1 2 3
2 7
1 8
4 5
4 1 2 3
3 1
5 3 1
输出 #1
2
1
-1
-1
C++ 编辑器
输入
输出