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.
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.
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.
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
In the first test case of the example, both teams get $1$ point since the game between them is a tie.
In the second test case of the example, team $1$ defeats team $2$ (team $1$ gets $3$ points), team $1$ loses to team $3$ (team $3$ gets $3$ points), and team $2$ wins against team $3$ (team $2$ gets $3$ points).
In the second test case of the example, team $1$ defeats team $2$ (team $1$ gets $3$ points), team $1$ loses to team $3$ (team $3$ gets $3$ points), and team $2$ wins against team $3$ (team $2$ gets $3$ points).
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted