CF1613C.Poisoned Dagger

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Monocarp is playing yet another computer game. In this game, his character has to kill a dragon. The battle with the dragon lasts 100500100^{500} seconds, during which Monocarp attacks the dragon with a poisoned dagger. The ii -th attack is performed at the beginning of the aia_i -th second from the battle start. The dagger itself does not deal damage, but it applies a poison effect on the dragon, which deals 11 damage during each of the next kk seconds (starting with the same second when the dragon was stabbed by the dagger). However, if the dragon has already been poisoned, then the dagger updates the poison effect (i.e. cancels the current poison effect and applies a new one).

For example, suppose k=4k = 4 , and Monocarp stabs the dragon during the seconds 22 , 44 and 1010 . Then the poison effect is applied at the start of the 22 -nd second and deals 11 damage during the 22 -nd and 33 -rd seconds; then, at the beginning of the 44 -th second, the poison effect is reapplied, so it deals exactly 11 damage during the seconds 44 , 55 , 66 and 77 ; then, during the 1010 -th second, the poison effect is applied again, and it deals 11 damage during the seconds 1010 , 1111 , 1212 and 1313 . In total, the dragon receives 1010 damage.

Monocarp knows that the dragon has hh hit points, and if he deals at least hh damage to the dragon during the battle — he slays the dragon. Monocarp has not decided on the strength of the poison he will use during the battle, so he wants to find the minimum possible value of kk (the number of seconds the poison effect lasts) that is enough to deal at least hh damage to the dragon.

输入格式

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

The first line of the test case contains two integers nn and hh ( 1n100;1h10181 \le n \le 100; 1 \le h \le 10^{18} ) — the number of Monocarp's attacks and the amount of damage that needs to be dealt.

The second line contains nn integers a1a_1 , a2a_2 , ..., ana_n ( 1ai109;ai<ai+11 \le a_i \le 10^9; a_i < a_{i + 1} ), where aia_i is the second when the ii -th attack is performed.

输出格式

For each test case, print a single integer — the minimum value of the parameter kk , such that Monocarp will cause at least hh damage to the dragon.

输入输出样例

  • 输入#1

    4
    2 5
    1 5
    3 10
    2 4 10
    5 3
    1 2 4 5 7
    4 1000
    3 25 64 1337

    输出#1

    3
    4
    1
    470

说明/提示

In the first example, for k=3k=3 , damage is dealt in seconds [1,2,3,5,6,7][1, 2, 3, 5, 6, 7] .

In the second example, for k=4k=4 , damage is dealt in seconds [2,3,4,5,6,7,10,11,12,13][2, 3, 4, 5, 6, 7, 10, 11, 12, 13] .

In the third example, for k=1k=1 , damage is dealt in seconds [1,2,4,5,7][1, 2, 4, 5, 7] .

首页