Task
The International Computer College of Bucharest has a network of computers linked in a circle. Computer (for ) is connected with computer through link . Computers and are also connected through link .
Each computer has a security key comprising bits of information, represented as a binary string of length . Each link also has a security threshold . The two computers connected through this link can only communicate if their security keys differ in exactly positions.
The system administrator has lost the security keys, and needs your help to generate new ones in such a way that communication can take place through every link.
Input data
The first line of the input contains - the number of testcases to solve. The description of testcases follows.
The first line of a testcase contains two space-separated integers . The second line of a testcase contains space-separated integers .
Output data
Output the answers for the testcases. The description of an answer for a testcase follows.
If there is no solution for a testcase, the first and only line of the output must contain the string NO
. Otherwise, the first line of the output must contain the string YES
, and lines to must contain a valid list of security keys. The security key for each computer must be printed as a binary string without any spaces on the th line.
Constraints
- It is guaranteed that the sum of among all testcases doesn't exceed .
- If you correctly determine whether or not a solution exists, yet you output incorrect security keys (but which are correctly formatted), then you will be awarded of the points of the subtask.
- Let be the maximum value among all 's.
# | Points | Restrictions |
---|---|---|
1 | 5 | |
2 | 2 | |
3 | 8 | |
4 | 32 | |
5 | 24 | |
6 | 29 | No further constraints. |
Example
stdin
3
5 3
2 1 3 0 2
10 6
3 2 1 4 3 2 1 3 2 1
2 3
2 1
stdout
YES
000
110
010
101
101
YES
000000
111000
111110
111111
000011
111011
011111
111111
000111
000001
NO
Explanation
For the first testcase, the security key 000
differs in bits/positions from 110
, 110
differs in bit from 010
, 010
differs in bits from 101
, 101
differs in bits from 101
and 101
differs in bits from 000
, satisfying all five security thresholds.
For the last testcase there isn’t a way to choose security keys such that all conditions are met. There- fore, NO
is printed.