CF1068C.Colored Rooks
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
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 109×109 .
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≤n≤100 , 0≤m≤min(1000,2n(n−1)) ) — 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.
输出格式
Print n blocks, i -th of them describes rooks of i -th color.
In the first line of block print one number ai ( 1≤ai≤5000 ) — number of rooks of color i . In each of next ai lines print two integers x and y ( 1≤x,y≤109 ) — 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 ).