CF1707A.Doremy's IQ
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Doremy is asked to test n contests. Contest i can only be tested on day i . The difficulty of contest i is ai . Initially, Doremy's IQ is q . On day i Doremy will choose whether to test contest i or not. She can only test a contest if her current IQ is strictly greater than 0 .
If Doremy chooses to test contest i on day i , the following happens:
- if ai>q , Doremy will feel she is not wise enough, so q decreases by 1 ;
- 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 t ( 1≤t≤104 ) — the number of test cases. The description of the test cases follows.
The first line contains two integers n and q ( 1≤n≤105 , 1≤q≤109 ) — the number of contests and Doremy's IQ in the beginning.
The second line contains n integers a1,a2,⋯,an ( 1≤ai≤109 ) — the difficulty of each contest.
It is guaranteed that the sum of n over all test cases does not exceed 105 .
输出格式
For each test case, you need to output a binary string s , where si=1 if Doremy should choose to test contest i , and si=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 1 after testing contest 2 .
In the third test case, Doremy tests contest 1 and 2 . Her IQ decreases to 0 after testing contest 2 , so she can't test contest 3 .