CF1707A.Doremy's IQ

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Doremy is asked to test nn contests. Contest ii can only be tested on day ii . The difficulty of contest ii is aia_i . Initially, Doremy's IQ is qq . On day ii Doremy will choose whether to test contest ii or not. She can only test a contest if her current IQ is strictly greater than 00 .

If Doremy chooses to test contest ii on day ii , the following happens:

  • if ai>qa_i>q , Doremy will feel she is not wise enough, so qq decreases by 11 ;
  • otherwise, nothing changes.

If she chooses not to test a contest, nothing changes.Doremy wants to test as many contests as possible. Please give Doremy a solution.

输入格式

The input 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 the test cases follows.

The first line contains two integers nn and qq ( 1n1051 \le n \le 10^5 , 1q1091 \le q \le 10^9 ) — the number of contests and Doremy's IQ in the beginning.

The second line contains nn integers a1,a2,,ana_1,a_2,\cdots,a_n ( 1ai1091 \le a_i \le 10^9 ) — the difficulty of each contest.

It is guaranteed that the sum of nn over all test cases does not exceed 10510^5 .

输出格式

For each test case, you need to output a binary string ss , where si=1s_i=1 if Doremy should choose to test contest ii , and si=0s_i=0 otherwise. The number of ones in the string should be maximum possible, and she should never test a contest when her IQ is zero or less.

If there are multiple solutions, you may output any.

输入输出样例

  • 输入#1

    5
    1 1
    1
    2 1
    1 2
    3 1
    1 2 1
    4 2
    1 4 3 1
    5 2
    5 1 2 4 3

    输出#1

    1
    11
    110
    1110
    01111

说明/提示

In the first test case, Doremy tests the only contest. Her IQ doesn't decrease.

In the second test case, Doremy tests both contests. Her IQ decreases by 11 after testing contest 22 .

In the third test case, Doremy tests contest 11 and 22 . Her IQ decreases to 00 after testing contest 22 , so she can't test contest 33 .

首页