CF1824A.LuoTianyi and the Show

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

There are nn people taking part in a show about VOCALOID. They will sit in the row of seats, numbered 11 to mm from left to right.

The nn people come and sit in order. Each person occupies a seat in one of three ways:

  1. Sit in the seat next to the left of the leftmost person who is already sitting, or if seat 11 is taken, then leave the show. If there is no one currently sitting, sit in seat mm .
  2. Sit in the seat next to the right of the rightmost person who is already sitting, or if seat mm is taken, then leave the show. If there is no one currently sitting, sit in seat 11 .
  3. Sit in the seat numbered xix_i . If this seat is taken, then leave the show.

Now you want to know what is the maximum number of people that can take a seat, if you can let people into the show in any order?

输入格式

Each test consists of multiple test cases. The first line contains a single integer tt ( 1t1041 \le t \le 10^4 ) — the number of test cases. The description of test cases follows.

The first line of each test case contains two integers nn and mm ( 1n,m1051 \le n, m \le 10^5 ) — the number of people and the number of seats.

The second line of each test case contains nn integers x1,x2,,xnx_1, x_2, \ldots, x_n ( 2xim-2 \le x_i \le m , xi0x_i \ne 0 ), the ii -th of which describes the way in which the ii -th person occupies a seat:

  1. If xi=1x_i=-1 , then ii -th person takes the seat in the first way.
  2. If xi=2x_i=-2 , then ii -th person takes the seat in the second way.
  3. If xi>0x_i > 0 , then the ii -th person takes a seat in the third way, i.e. he wants to sit in the seat with the number xix_i or leave the show if it is occupied..

It is guaranteed that sum of nn and the sum of mm over all test cases don't exceed 10510^5 .

输出格式

For each test case output a single integer — the maximum number of people who can occupy a seat.

输入输出样例

  • 输入#1

    10
    3 10
    5 5 5
    4 6
    1 -2 -2 1
    5 7
    -1 -1 4 -2 -2
    6 7
    5 -2 -2 -2 -2 -2
    6 6
    -1 1 4 5 -1 4
    6 8
    -1 -1 -1 3 -1 -2
    6 7
    5 -1 -2 -2 -2 -2
    3 1
    -2 -2 1
    2 5
    5 -2
    1 2
    -1

    输出#1

    1
    3
    5
    6
    5
    5
    5
    1
    2
    1

说明/提示

In the first test case, all the people want to occupy the 55 seat, so only 11 people can occupy the seat.

In the second test case, we can let people in order 1,2,3,41, 2, 3, 4 , then all but the last person can take a seat.

In the third test case, we can let people into the show in that order:

Let the third person in:

–––3–––Let the fourth person in:

–––34––Let the fifth person in:

–––345–Let the first person in:

––1345–Let the second person in:

–21345–Thus, all 55 people took seats.

In the fifth test case, we can let people into the show in this order:

Let the fourth person in:

––––4–Let the third person in:

–––34–Let the sixth person in, he'll leave the show because he takes the third seat the third way and has to sit in the 44 seat, but it's already taken:

–––34–Let the fifth person in:

––534–Let the first person in:

–1534–Let the second person in:

21534–Thus, 55 of people took seats.

In the seventh test case, we can let people into the show in this order:

Let the third person in:

3––––––Let the fourth person in:

34–––––Let the fifth person in:

345––––Let the sixth person in:

3456–––Let the first person in:

34561––Let the second person in, he will leave the show because he occupies the first way, but the 11 seat is taken:

34561––Thus, 55 people took seats.

首页