题库练习 Minimum Ties
← 上一题 下一题 →

A14128 | Minimum Ties

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

A big football championship will occur soon! $n$ teams will compete in it, and each pair of teams will play exactly one game against each other.

There are two possible outcomes of a game:

- the game may result in a tie, then both teams get $1$ point;
- one team might win in a game, then the winning team gets $3$ points and the losing team gets $0$ points.

The score of a team is the number of points it gained during all games that it played.

You are interested in a hypothetical situation when all teams get the same score at the end of the championship. A simple example of that situation is when all games result in ties, but you want to minimize the number of ties as well.

Your task is to describe a situation (choose the result of each game) so that all teams get the same score, and the number of ties is the minimum possible.

输入格式

The first line contains one integer $t$ ( $1 \le t \le 100$ ) — the number of test cases.

Then the test cases follow. Each test case is described by one line containing one integer $n$ ( $2 \le n \le 100$ ) — the number of teams.

输出格式

For each test case, print $\frac{n(n - 1)}{2}$ integers describing the results of the games in the following order: the first integer should correspond to the match between team $1$ and team $2$ , the second — between team $1$ and team $3$ , then $1$ and $4$ , ..., $1$ and $n$ , $2$ and $3$ , $2$ and $4$ , ..., $2$ and $n$ , and so on, until the game between the team $n - 1$ and the team $n$ .

The integer corresponding to the game between the team $x$ and the team $y$ should be $1$ if $x$ wins, $-1$ if $y$ wins, or $0$ if the game results in a tie.

All teams should get the same score, and the number of ties should be the minimum possible. If there are multiple optimal answers, print any of them. It can be shown that there always exists a way to make all teams have the same score.

输入输出样例

输入 #1
2
2
3
输出 #1
0 
1 -1 1
C++ 编辑器
输入
输出