A12251 | Colored Rooks
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Ivan is a novice painter. He has $n$ dyes of different colors. He also knows exactly $m$ pairs of colors which harmonize with each other.
Ivan also enjoy playing chess. He has $5000$ rooks. He wants to take $k$ rooks, paint each of them in one of $n$ colors and then place this $k$ rooks on a chessboard of size $10^{9} \times 10^{9}$ .
Let's call the set of rooks on the board connected if from any rook we can get to any other rook in this set moving only through cells with rooks from this set. Assume that rooks can jump over other rooks, in other words a rook can go to any cell which shares vertical and to any cell which shares horizontal.
Ivan wants his arrangement of rooks to have following properties:
- For any color there is a rook of this color on a board;
- For any color the set of rooks of this color is connected;
- For any two different colors $a$ $b$ union of set of rooks of color $a$ and set of rooks of color $b$ is connected if and only if this two colors harmonize with each other.
Please help Ivan find such an arrangement.
Ivan also enjoy playing chess. He has $5000$ rooks. He wants to take $k$ rooks, paint each of them in one of $n$ colors and then place this $k$ rooks on a chessboard of size $10^{9} \times 10^{9}$ .
Let's call the set of rooks on the board connected if from any rook we can get to any other rook in this set moving only through cells with rooks from this set. Assume that rooks can jump over other rooks, in other words a rook can go to any cell which shares vertical and to any cell which shares horizontal.
Ivan wants his arrangement of rooks to have following properties:
- For any color there is a rook of this color on a board;
- For any color the set of rooks of this color is connected;
- For any two different colors $a$ $b$ union of set of rooks of color $a$ and set of rooks of color $b$ is connected if and only if this two colors harmonize with each other.
Please help Ivan find such an arrangement.
输入格式
The first line of input contains $2$ integers $n$ , $m$ ( $1 \le n \le 100$ , $0 \le m \le min(1000, \,\, \frac{n(n-1)}{2})$ ) — number of colors and number of pairs of colors which harmonize with each other.
In next $m$ lines pairs of colors which harmonize with each other are listed. Colors are numbered from $1$ to $n$ . It is guaranteed that no pair occurs twice in this list.
In next $m$ lines pairs of colors which harmonize with each other are listed. Colors are numbered from $1$ to $n$ . It is guaranteed that no pair occurs twice in this list.
输出格式
Print $n$ blocks, $i$ -th of them describes rooks of $i$ -th color.
In the first line of block print one number $a_{i}$ ( $1 \le a_{i} \le 5000$ ) — number of rooks of color $i$ . In each of next $a_{i}$ lines print two integers $x$ and $y$ ( $1 \le x, \,\, y \le 10^{9}$ ) — coordinates of the next rook.
All rooks must be on different cells.
Total number of rooks must not exceed $5000$ .
It is guaranteed that the solution exists.
In the first line of block print one number $a_{i}$ ( $1 \le a_{i} \le 5000$ ) — number of rooks of color $i$ . In each of next $a_{i}$ lines print two integers $x$ and $y$ ( $1 \le x, \,\, y \le 10^{9}$ ) — coordinates of the next rook.
All rooks must be on different cells.
Total number of rooks must not exceed $5000$ .
It is guaranteed that the solution exists.
输入输出样例
输入 #1
3 2 1 2 2 3
输出 #1
2 3 4 1 4 4 1 2 2 2 2 4 5 4 1 5 1
输入 #2
3 3 1 2 2 3 3 1
输出 #2
1 1 1 1 1 2 1 1 3
输入 #3
3 1 1 3
输出 #3
1 1 1 1 2 2 1 3 1
Rooks arrangements for all three examples (red is color $1$ , green is color $2$ and blue is color $3$ ).






C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted