CF1774B.Coloring

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Cirno_9baka has a paper tape with nn cells in a row on it. As he thinks that the blank paper tape is too dull, he wants to paint these cells with mm kinds of colors. For some aesthetic reasons, he thinks that the ii -th color must be used exactly aia_i times, and for every kk consecutive cells, their colors have to be distinct.

Help Cirno_9baka to figure out if there is such a way to paint the cells.

输入格式

The first line contains a single integer tt ( 1t100001 \leq t \leq 10\,000 ) — the number of test cases. The description of test cases follows.

The first line of each test case contains three integers nn , mm , kk ( 1kn1091 \leq k \leq n \leq 10^9 , 1m1051 \leq m \leq 10^5 , mnm \leq n ). Here nn denotes the number of cells, mm denotes the number of colors, and kk means that for every kk consecutive cells, their colors have to be distinct.

The second line of each test case contains mm integers a1,a2,,ama_1, a_2, \cdots , a_m ( 1ain1 \leq a_i \leq n ) — the numbers of times that colors have to be used. It's guaranteed that a1+a2++am=na_1 + a_2 + \ldots + a_m = n .

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

输出格式

For each test case, output "YES" if there is at least one possible coloring scheme; otherwise, output "NO".

You may print each letter in any case (for example, "YES", "Yes", "yes", and "yEs" will all be recognized as positive answers).

输入输出样例

  • 输入#1

    2
    12 6 2
    1 1 1 1 1 7
    12 6 2
    2 2 2 2 2 2

    输出#1

    NO
    YES

说明/提示

In the first test case, there is no way to color the cells satisfying all the conditions.

In the second test case, we can color the cells as follows: (1,2,1,2,3,4,3,4,5,6,5,6)(1, 2, 1, 2, 3, 4, 3, 4, 5, 6, 5, 6) . For any 22 consecutive cells, their colors are distinct.

首页