There are multiple test cases, for each case:
The first line is an integer N. (1 <= N <= 100,000)
The second line contains two integers L, R. (0 <= L <= R <= 263 - 1)
The third line contains two integers aCount, bCount.
The fourth line contains N integers p[0], p[1], ..., p[N - 1], denoting the positions of the white balls.
It is guaranteed that p[i - 1] < p[i] (1 <= i <= N - 1), L <= p[0], p[N - 1] <= R, 0 <= aCount <= R - L + 1, 0<=bCount <= aCount.