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 100500 seconds, during which Monocarp attacks the dragon with a poisoned dagger. The i -th attack is performed at the beginning of the ai -th second from the battle start. The dagger itself does not deal damage, but it applies a poison effect on the dragon, which deals 1 damage during each of the next k 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=4 , and Monocarp stabs the dragon during the seconds 2 , 4 and 10 . Then the poison effect is applied at the start of the 2 -nd second and deals 1 damage during the 2 -nd and 3 -rd seconds; then, at the beginning of the 4 -th second, the poison effect is reapplied, so it deals exactly 1 damage during the seconds 4 , 5 , 6 and 7 ; then, during the 10 -th second, the poison effect is applied again, and it deals 1 damage during the seconds 10 , 11 , 12 and 13 . In total, the dragon receives 10 damage.
Monocarp knows that the dragon has h hit points, and if he deals at least h 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 k (the number of seconds the poison effect lasts) that is enough to deal at least h damage to the dragon.
输入格式
The first line contains a single integer t ( 1≤t≤1000 ) — the number of test cases.
The first line of the test case contains two integers n and h ( 1≤n≤100;1≤h≤1018 ) — the number of Monocarp's attacks and the amount of damage that needs to be dealt.
The second line contains n integers a1 , a2 , ..., an ( 1≤ai≤109;ai<ai+1 ), where ai is the second when the i -th attack is performed.
输出格式
For each test case, print a single integer — the minimum value of the parameter k , such that Monocarp will cause at least h 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=3 , damage is dealt in seconds [1,2,3,5,6,7] .
In the second example, for k=4 , damage is dealt in seconds [2,3,4,5,6,7,10,11,12,13] .
In the third example, for k=1 , damage is dealt in seconds [1,2,4,5,7] .