#P1889B. Doremy's Connecting Plan

Doremy's Connecting Plan

Description

Doremy lives in a country consisting of nn cities numbered from 11 to nn, with aia_i people living in the ii-th city. It can be modeled as an undirected graph with nn nodes.

Initially, there are no edges in the graph. Now Doremy wants to make the graph connected.

To do this, she can add an edge between ii and jj if

kSakijc, \sum_{k \in S} a_k \ge i\cdot j \cdot c,

where SS is the set of all the nodes that are currently in the same connected component of either ii or jj, and cc is a given constant.

Can Doremy make the graph connected?

Two nodes (i,j)(i, j) are in the same connected component if there exists a path from ii to jj. A graph is connected if all its nodes are in the same connected component.

deepl翻译

多雷米生活在一个由 nn 个城市组成的国家,这些城市的编号从 11nn ,其中 aia_i 个人生活在 ii 个城市中。它可以被建模为一个无向图,其中有 nn 个节点。

最初,图中没有边。现在,多雷米想让这个图连接起来。

为此,她可以在 iijj 之间添加一条边,如果

kSakijc\sum _ {k \in S} a_k \ge i\cdot j \cdot c

其中 SS 是当前位于 iijj 的同一相连组件中的所有节点的集合,而 cc 是给定的常数。

多雷米能否使图形连通?

如果存在从 iijj 的路径,则两个节点 (i,j)(i, j) 位于同一个连通部分。如果一个图的所有节点都在同一个连通部分中,那么这个图就是连通的。

Input

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, cc (2n21052\le n\le 2\cdot 10^5, 1c1061 \le c \le 10^6) — the number of nodes and the constant.

The second line of each test case contains n n integers a1,a2,,an a_1,a_2,\ldots,a_n (0ai10120 \le a_i \le 10^{12}) — the number of people living in the ii-th city.

It is guaranteed that the sum of nn over all test cases does not exceed 21052\cdot 10^5.

Output

For each test case, print "YES" (without quotes), if it is possible to make the graph connected, and "NO" (without quotes) otherwise.

You can print letters in any case (upper or lower).

输入数据 1

7
4 10
0 20 15 10
2 1
1 1
5 1
0 1 0 4 199
5 2
1 1 3 1 1
5 5
5 6 1 10 2
5 1000000
1000000000000 1000000000000 1000000000000 1000000000000 1000000000000
3 1
0 0 2

输出数据 1

Yes
Yes
Yes
No
No
Yes
No

Note

In the first test case, Doremy can add edges in the following order:

  1. Add (1,2)(1,2). This operation is valid because a1+a2=20ijc=20a_1 + a_2 = 20 \ge i\cdot j \cdot c = 20.
  2. Add (1,3)(1,3). This operation is valid because a1+a2+a3=35ijc=30a_1 + a_2 + a_3 = 35 \ge i \cdot j \cdot c = 30.
  3. Add (1,4)(1,4). This operation is valid because a1+a2+a3+a4=45ijc=40a_1 + a_2 + a_3 + a_4 = 45 \ge i \cdot j \cdot c = 40.

In the second test case, Doremy can add edge (1,2)(1,2) because a1+a2=2121a_1 + a_2 =2 \ge 1 \cdot 2 \cdot 1. After that, the graph is connected.

In the third test case, Doremy can add edges in the order (5,4)(5,4), (5,3)(5,3), (5,2)(5,2) and (5,1)(5,1).

In the fourth test case, Doremy cannot add any edge at all.