Signals

Time limit: 0.8s Memory limit: 512MB Input: Output:

Task

The International Computer College of Bucharest has a network of NN computers linked in a circle. Computer ii (for 1i<N1 \leq i < N) is connected with computer i+1i + 1 through link ii. Computers NN and 11 are also connected through link NN.

Each computer has a security key comprising KK bits of information, represented as a binary string of length KK. Each link ii also has a security threshold WiW_i. The two computers connected through this link can only communicate if their security keys differ in exactly WiW_i 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 TT - the number of testcases to solve. The description of TT testcases follows.

The first line of a testcase contains two space-separated integers N,KN, K. The second line of a testcase contains NN space-separated integers W1,W2,,WNW_1, W_2, \dots, W_N.

Output data

Output the answers for the TT 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 22 to N+1N + 1 must contain a valid list of security keys. The security key for each computer ii must be printed as a binary string without any spaces on the (i+1)(i + 1)th line.

Constraints

  • 1T100 0001 \leq T \leq 100 \ 000
  • 2N2 \leq N
  • 2NK5 000 0002 \leq N \cdot K \leq 5 \ 000 \ 000
  • 0WiK0 \leq W_i \leq K
  • It is guaranteed that the sum of NKN \cdot K among all testcases doesn't exceed 5 000 0005 \ 000 \ 000.
  • 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 50%50\% of the points of the subtask.
  • Let WmaxW_{max} be the maximum value among all WiW_i's.
# Points Restrictions
1 5 T,N,K5T, N, K \leq 5
2 2 K=1K = 1
3 8 K=2K = 2
4 32 2WmaxK2W_{max} \leq K
5 24 N50 000,K20N \leq 50 \ 000, K \leq 20
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 22 bits/positions from 110, 110 differs in 11 bit from 010, 010 differs in 33 bits from 101, 101 differs in 00 bits from 101 and 101 differs in 22 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.

Log in or sign up to be able to send submissions!