A table tennis competition was held in JOI Kingdom. $N$ beavers numbered from 1 to $N$ participated in this competition, and a round-robin tournament was conducted.
You were told the following information about the result of this competition from Bitaro.
There were no draw match.
There are exactly $M$ ways to choose 3 beavers which are trilemma. Note that 3 beavers $i, j, k$ ($1 \le i < j < k \le N$) are trilemma if and only if exactly one of the following 2 conditions is satisfied.
- Beaver $i$ beat beaver $j$, beaver $j$ beat beaver $k$, and beaver $k$ beat beaver $i$.
- Beaver $i$ beat beaver $k$, beaver $k$ beat beaver $j$, and beaver $j$ beat beaver $i$.
You don’t know whether the information from Bitaro is correct, so you decided to think whether there are any results of this competition which accord with the information from Bitaro.
Write a program which, given the information from Bitaro, judge whether there are any results of this competition which accord with the information, and if so, finds one such result of this competition.
Input
A test case consists of $Q$ scenarios, numbered from 1 to $Q$. The following values are specified for each scenario.
- The number of beavers $N$ which participated in the competition.
- The number of ways $M$ to choose 3 beavers which are trilemma.
The format of the input data is as follows.
$Q$ (Input for Scenario 1) (Input for Scenario 2) $\vdots$ (Input for Scenario $Q$)
The format of the input data for each scenario is as follows.
$N \ M$
Output
Write to standard output the answer of Scenario 1, 2, $\dots, Q$ in order as follows.
In some scenario, if there are any results of this competition which accord with the information, output as follows.
Yes $S_2$ $S_3$ $\vdots$ $S_N$
Here, $S_i$ ($2 \le i \le N$) is a string of which characters are ‘0’ or ‘1’ and length is $i-1$. $j$-th character of $S_i$ is ‘0’ means beaver $i$ was defeated by beaver $j$, and $j$-th character of $S_i$ is ‘1’ means beaver $i$ won against beaver $j$. If multiple results exist, you can output any of them.
In some scenario, if there are not any results of this competition which accord with the information, output No.
Constraints
- $1 \le Q$.
- $3 \le N \le 5\,000$.
- $0 \le M \le \frac{1}{6}N(N - 1)(N - 2)$.
- The sum of $N$ for the $Q$ scenarios is less than or equal to $5\,000$.
- Given values are all integers.
Subtasks
- (5 points) $M \le N - 2$.
- (4 points) The sum of $N$ for the $Q$ scenarios is less than or equal to 7.
- (23 points) The sum of $N$ for the $Q$ scenarios is less than or equal to 20.
- (30 points) The sum of $N$ for the $Q$ scenarios is less than or equal to 150.
- (15 points) The sum of $N$ for the $Q$ scenarios is less than or equal to 600.
- (23 points) No additional constraints.
Examples
Input 1
2 3 1 4 4
Output 1
Yes 0 10 No
Note 1
There are $Q = 2$ scenarios.
In the results of scenario 1 in this sample output, beaver 1 won beaver 2, beaver 2 won beaver 3, and beaver 3 won beaver 1. Therefore, 3 beavers 1, 2, 3 are trilemma. There is no other ways to choose 3 beavers, so there are exactly 1 ways to choose 3 beavers which are trilemma.
There is another output corresponds to scenario 1 as follows.
Yes 1 01
In scenario 2, there are not any results of this competition which accord with the information. Therefore, output No.
This sample input satisfies the constraints of Subtasks 2, 3, 4, 5, 6.
Input 2
1 5 3
Output 2
Yes 0 11 001 0101
Note 2
In the results of scenario 1 in this sample output, beaver 1 won beaver 4, beaver 4 won beaver 3, and beaver 3 won beaver 1. Therefore, 3 beavers 1, 3, 4 are trilemma. There are two other ways to choose 3 beavers which are trilemma: choose beavers 2, 3, 4 and choose beavers 3, 4, 5. Therefore, there are exactly 3 ways to choose 3 beavers which are trilemma.
This sample input satisfies the constraints of all the subtasks.