CF1349B.Orac and Medians
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Slime has a sequence of positive integers a1,a2,…,an .
In one operation Orac can choose an arbitrary subsegment [l…r] of this sequence and replace all values al,al+1,…,ar to the value of median of {al,al+1,…,ar} .
In this problem, for the integer multiset s , the median of s is equal to the ⌊2∣s∣+1⌋ -th smallest number in it. For example, the median of {1,4,4,6,5} is 4 , and the median of {1,7,5,8} is 5 .
Slime wants Orac to make a1=a2=…=an=k using these operations.
Orac thinks that it is impossible, and he does not want to waste his time, so he decided to ask you if it is possible to satisfy the Slime's requirement, he may ask you these questions several times.
输入格式
The first line of the input is a single integer t : the number of queries.
The first line of each query contains two integers n (1≤n≤100000) and k (1≤k≤109) , the second line contains n positive integers a1,a2,…,an (1≤ai≤109)
The total sum of n is at most 100000 .
输出格式
The output should contain t lines. The i -th line should be equal to 'yes' if it is possible to make all integers k in some number of operations or 'no', otherwise. You can print each letter in lowercase or uppercase.
输入输出样例
输入#1
5 5 3 1 5 2 6 1 1 6 6 3 2 1 2 3 4 3 3 1 2 3 10 3 1 2 3 4 5 6 7 8 9 10
输出#1
no yes yes no yes
说明/提示
In the first query, Orac can't turn all elements into 3 .
In the second query, a1=6 is already satisfied.
In the third query, Orac can select the complete array and turn all elements into 2 .
In the fourth query, Orac can't turn all elements into 3 .
In the fifth query, Orac can select [1,6] at first and then select [2,10] .