首页 > 试题广场 >

Another Distinct Values

[编程题]Another Distinct Values
Chiaki has an n x n matrix. She would like to fill each entry by -1, 0 or 1 such that r1,r2,...,rn,c1,c2, ..., cn are distinct values, where ri be the sum of the i-th row and ci be the sum of the i-th column.

输入描述:
There are multiple test cases. The first line of input contains an integer T (1 ≤ T ≤ 200), indicating the number of test cases. For each test case:
The first line contains an integer n (1 ≤ n ≤ 200) -- the dimension of the matrix.


输出描述:
For each test case, if no such matrix exists, output ``impossible'' in a single line. Otherwise, output ``possible'' in the first line. And each of the next n lines contains n integers, denoting the solution matrix. If there are multiple solutions, output any of them.
示例1

输入

2
1
2

输出

impossible
possible
1 0
1 -1

这道题你会答吗?花几分钟告诉大家答案吧!

问题信息

难度:
0条回答 14浏览

热门推荐

通过挑战的用户

查看代码
Another Distinct Values