CF1329E.Dreamoon Loves AA

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

There is a string of length n+1n+1 of characters 'A' and 'B'. The first character and last character of the string are equal to 'A'.

You are given mm indices p1,p2,,pmp_1, p_2, \ldots, p_m ( 00 -indexation) denoting the other indices of characters 'A' in the string.

Let's denote the minimum distance between two neighboring 'A' as ll , and maximum distance between neighboring 'A' as rr .

For example, (l,r)(l,r) of string "ABBAABBBA" is (1,4)(1,4) .

And let's denote the balance degree of a string as the value of rlr-l .

Now Dreamoon wants to change exactly kk characters from 'B' to 'A', and he wants to make the balance degree of the string as small as possible.

Please calculate the required minimum possible value of balance degree.

输入格式

The first line contains one integer tt denoting the number of test cases ( 1t4000001 \leq t \leq 400\,000 ).

For each test case, the first line contains three integers nn , mm and kk ( 1n1015,0m400000,0k<nm1 \leq n \leq 10^{15}, 0 \leq m \leq 400\,000, 0 \leq k < n - m ).

The second line contains mm integers p1,p2,,pmp_1, p_2, \ldots, p_m , ( 0<p1<p2<<pm<n0 < p_1 < p_2 < \ldots < p_m < n ).

The total sum of mm is at most 400000400\,000 .

输出格式

For each test case, print one integer: the smallest possible value of balance degree after kk changes of 'B' to 'A'.

输入输出样例

  • 输入#1

    5
    80 3 5
    11 24 50
    81 7 12
    4 10 17 26 37 48 61
    25 10 14
    3 4 7 12 13 15 17 19 21 23
    1 0 0
    
    10 2 0
    2 4

    输出#1

    5
    2
    0
    0
    4
首页