Two strategic players, GG and YY, are about to engage in a competitive game. The game takes place on an undirected graph, denoted as $$$G$$$. The graph is characterized by a parameter $$$t$$$ ($$$t \geq 1$$$) and comprises $$$n$$$ disjoint chains.
The rules of the game are as follows:
Both GG and YY aim to capture the maximum number of nodes. Let $$$\text{cnt}_\text{GG}$$$ and $$$\text{cnt}_\text{YY}$$$ represent the number of nodes captured by GG and YY, respectively. Assuming both players, GG and YY, employ their optimal strategies, your task is to determine:
The first line contains one integer $$$T$$$ ($$$1\le T\le 100$$$), indicating the number of test cases.
The first line of each test case contains two integers $$$n$$$ and $$$t$$$ ($$$1\le n\le 10^4$$$,$$$1\le t\le 10^{18}$$$), indicating the number of chains and the parameter.
The second line of each test contains $$$n$$$ integers $$$l_{1},l_2,\ldots,l_n$$$, where each $$$l_i$$$ ($$$1\le l_i\le 10^{18}$$$) indicates that a distinct chain of length $$$l_{i}$$$ exists in $$$G$$$.
For each test, output the answer in a single line.
22 11 52 21 5
2 GG