A14529 | Chess Tournament
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
A chess tournament will be held soon, where $n$ chess players will take part. Every participant will play one game against every other participant. Each game ends in either a win for one player and a loss for another player, or a draw for both players.
Each of the players has their own expectations about the tournament, they can be one of two types:
1. a player wants not to lose any game (i. e. finish the tournament with zero losses);
2. a player wants to win at least one game.
You have to determine if there exists an outcome for all the matches such that all the players meet their expectations. If there are several possible outcomes, print any of them. If there are none, report that it's impossible.
Each of the players has their own expectations about the tournament, they can be one of two types:
1. a player wants not to lose any game (i. e. finish the tournament with zero losses);
2. a player wants to win at least one game.
You have to determine if there exists an outcome for all the matches such that all the players meet their expectations. If there are several possible outcomes, print any of them. If there are none, report that it's impossible.
输入格式
The first line contains a single integer $t$ ( $1 \le t \le 200$ ) — the number of test cases.
The first line of each test case contains one integer $n$ ( $2 \le n \le 50$ ) — the number of chess players.
The second line contains the string $s$ ( $|s| = n$ ; $s_i \in \{1, 2\}$ ). If $s_i = 1$ , then the $i$ -th player has expectations of the first type, otherwise of the second type.
The first line of each test case contains one integer $n$ ( $2 \le n \le 50$ ) — the number of chess players.
The second line contains the string $s$ ( $|s| = n$ ; $s_i \in \{1, 2\}$ ). If $s_i = 1$ , then the $i$ -th player has expectations of the first type, otherwise of the second type.
输出格式
For each test case, print the answer in the following format:
In the first line, print NO if it is impossible to meet the expectations of all players.
Otherwise, print YES, and the matrix of size $n \times n$ in the next $n$ lines.
The matrix element in the $i$ -th row and $j$ -th column should be equal to:
- +, if the $i$ -th player won in a game against the $j$ -th player;
- -, if the $i$ -th player lost in a game against the $j$ -th player;
- =, if the $i$ -th and $j$ -th players' game resulted in a draw;
- X, if $i = j$ .
In the first line, print NO if it is impossible to meet the expectations of all players.
Otherwise, print YES, and the matrix of size $n \times n$ in the next $n$ lines.
The matrix element in the $i$ -th row and $j$ -th column should be equal to:
- +, if the $i$ -th player won in a game against the $j$ -th player;
- -, if the $i$ -th player lost in a game against the $j$ -th player;
- =, if the $i$ -th and $j$ -th players' game resulted in a draw;
- X, if $i = j$ .
输入输出样例
输入 #1
3 3 111 2 21 4 2122
输出 #1
YES X== =X= ==X NO YES X--+ +X++ +-X- --+X
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted