A13161 | Beautiful League
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
A football league has recently begun in Beautiful land. There are $n$ teams participating in the league. Let's enumerate them with integers from $1$ to $n$ .
There will be played exactly $\frac{n(n-1)}{2}$ matches: each team will play against all other teams exactly once. In each match, there is always a winner and loser and there is no draw.
After all matches are played, the organizers will count the number of beautiful triples. Let's call a triple of three teams $(A, B, C)$ beautiful if a team $A$ win against a team $B$ , a team $B$ win against a team $C$ and a team $C$ win against a team $A$ . We look only to a triples of different teams and the order of teams in the triple is important.
The beauty of the league is the number of beautiful triples.
At the moment, $m$ matches were played and their results are known.
What is the maximum beauty of the league that can be, after playing all remaining matches? Also find a possible results for all remaining $\frac{n(n-1)}{2} - m$ matches, so that the league has this maximum beauty.
There will be played exactly $\frac{n(n-1)}{2}$ matches: each team will play against all other teams exactly once. In each match, there is always a winner and loser and there is no draw.
After all matches are played, the organizers will count the number of beautiful triples. Let's call a triple of three teams $(A, B, C)$ beautiful if a team $A$ win against a team $B$ , a team $B$ win against a team $C$ and a team $C$ win against a team $A$ . We look only to a triples of different teams and the order of teams in the triple is important.
The beauty of the league is the number of beautiful triples.
At the moment, $m$ matches were played and their results are known.
What is the maximum beauty of the league that can be, after playing all remaining matches? Also find a possible results for all remaining $\frac{n(n-1)}{2} - m$ matches, so that the league has this maximum beauty.
输入格式
The first line contains two integers $n, m$ ( $3 \leq n \leq 50, 0 \leq m \leq \frac{n(n-1)}{2}$ ) — the number of teams in the football league and the number of matches that were played.
Each of $m$ following lines contains two integers $u$ and $v$ ( $1 \leq u, v \leq n$ , $u \neq v$ ) denoting that the $u$ -th team won against the $v$ -th team. It is guaranteed that each unordered pair of teams appears at most once.
Each of $m$ following lines contains two integers $u$ and $v$ ( $1 \leq u, v \leq n$ , $u \neq v$ ) denoting that the $u$ -th team won against the $v$ -th team. It is guaranteed that each unordered pair of teams appears at most once.
输出格式
Print $n$ lines, each line having a string of exactly $n$ characters. Each character must be either $0$ or $1$ .
Let $a_{ij}$ be the $j$ -th number in the $i$ -th line. For all $1 \leq i \leq n$ it should be true, that $a_{ii} = 0$ . For all pairs of teams $i \neq j$ the number $a_{ij}$ indicates the result of the match between the $i$ -th team and the $j$ -th team:
- If $a_{ij}$ is $1$ , the $i$ -th team wins against the $j$ -th team;
- Otherwise the $j$ -th team wins against the $i$ -th team;
- Also, it should be true, that $a_{ij} + a_{ji} = 1$ .
Also note that the results of the $m$ matches that were already played cannot be changed in your league.
The beauty of the league in the output should be maximum possible. If there are multiple possible answers with maximum beauty, you can print any of them.
Let $a_{ij}$ be the $j$ -th number in the $i$ -th line. For all $1 \leq i \leq n$ it should be true, that $a_{ii} = 0$ . For all pairs of teams $i \neq j$ the number $a_{ij}$ indicates the result of the match between the $i$ -th team and the $j$ -th team:
- If $a_{ij}$ is $1$ , the $i$ -th team wins against the $j$ -th team;
- Otherwise the $j$ -th team wins against the $i$ -th team;
- Also, it should be true, that $a_{ij} + a_{ji} = 1$ .
Also note that the results of the $m$ matches that were already played cannot be changed in your league.
The beauty of the league in the output should be maximum possible. If there are multiple possible answers with maximum beauty, you can print any of them.
输入输出样例
输入 #1
3 1 1 2
输出 #1
010 001 100
输入 #2
4 2 1 2 1 3
输出 #2
0110 0001 0100 1010
The beauty of league in the first test case is equal to $3$ because there exists three beautiful triples: $(1, 2, 3)$ , $(2, 3, 1)$ , $(3, 1, 2)$ .
The beauty of league in the second test is equal to $6$ because there exists six beautiful triples: $(1, 2, 4)$ , $(2, 4, 1)$ , $(4, 1, 2)$ , $(2, 4, 3)$ , $(4, 3, 2)$ , $(3, 2, 4)$ .
The beauty of league in the second test is equal to $6$ because there exists six beautiful triples: $(1, 2, 4)$ , $(2, 4, 1)$ , $(4, 1, 2)$ , $(2, 4, 3)$ , $(4, 3, 2)$ , $(3, 2, 4)$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted