CF1468D.Firecrackers
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Consider a long corridor which can be divided into n square cells of size 1×1 . These cells are numbered from 1 to n from left to right.
There are two people in this corridor, a hooligan and a security guard. Initially, the hooligan is in the a -th cell, the guard is in the b -th cell ( a=b ).
One of the possible situations. The corridor consists of 7 cells, the hooligan is in the 3 -rd cell, the guard is in the 6 -th ( n=7 , a=3 , b=6 ).There are m firecrackers in the hooligan's pocket, the i -th firecracker explodes in si seconds after being lit.
The following events happen each second (sequentially, exactly in the following order):
- firstly, the hooligan either moves into an adjacent cell (from the cell i , he can move to the cell (i+1) or to the cell (i−1) , and he cannot leave the corridor) or stays in the cell he is currently. If the hooligan doesn't move, he can light one of his firecrackers and drop it. The hooligan can't move into the cell where the guard is;
- secondly, some firecrackers that were already dropped may explode. Formally, if the firecracker j is dropped on the T -th second, then it will explode on the (T+sj) -th second (for example, if a firecracker with sj=2 is dropped on the 4 -th second, it explodes on the 6 -th second);
- finally, the guard moves one cell closer to the hooligan. If the guard moves to the cell where the hooligan is, the hooligan is caught.
Obviously, the hooligan will be caught sooner or later, since the corridor is finite. His goal is to see the maximum number of firecrackers explode before he is caught; that is, he will act in order to maximize the number of firecrackers that explodes before he is caught.
Your task is to calculate the number of such firecrackers, if the hooligan acts optimally.
输入格式
The first line contains one integer t ( 1≤t≤1000 ) — the number of test cases.
Each test case consists of two lines. The first line contains four integers n , m , a and b ( 2≤n≤109 ; 1≤m≤2⋅105 ; 1≤a,b≤n ; a=b ) — the size of the corridor, the number of firecrackers, the initial location of the hooligan and the initial location of the guard, respectively.
The second line contains m integers s1 , s2 , ..., sm ( 1≤si≤109 ), where si is the time it takes the i -th firecracker to explode after it is lit.
It is guaranteed that the sum of m over all test cases does not exceed 2⋅105 .
输出格式
For each test case, print one integer — the maximum number of firecrackers that the hooligan can explode before he is caught.
输入输出样例
输入#1
3 7 2 3 6 1 4 7 2 3 6 5 1 7 2 3 6 4 4
输出#1
2 1 1
说明/提示
In the first test case, the hooligan should act, for example, as follows:
- second 1: drop the second firecracker, so it will explode on the 5 -th second. The guard moves to the cell 5 ;
- second 2: move to the cell 2 . The guard moves to the cell 4 ;
- second 3: drop the first firecracker, so it will explode on the 4 -th second. The guard moves to the cell 3 ;
- second 4: move to the cell 1 . The first firecracker explodes. The guard moves to the cell 2 ;
- second 5: stay in the cell 1 . The second firecracker explodes. The guard moves to the cell 1 and catches the hooligan.