CF1068C.Colored Rooks

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Ivan is a novice painter. He has nn dyes of different colors. He also knows exactly mm pairs of colors which harmonize with each other.

Ivan also enjoy playing chess. He has 50005000 rooks. He wants to take kk rooks, paint each of them in one of nn colors and then place this kk rooks on a chessboard of size 109×10910^{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 aa bb union of set of rooks of color aa and set of rooks of color bb 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 22 integers nn , mm ( 1n1001 \le n \le 100 , 0mmin(1000,n(n1)2)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 mm lines pairs of colors which harmonize with each other are listed. Colors are numbered from 11 to nn . It is guaranteed that no pair occurs twice in this list.

输出格式

Print nn blocks, ii -th of them describes rooks of ii -th color.

In the first line of block print one number aia_{i} ( 1ai50001 \le a_{i} \le 5000 ) — number of rooks of color ii . In each of next aia_{i} lines print two integers xx and yy ( 1x,y1091 \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 50005000 .

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 11 , green is color 22 and blue is color 33 ).

首页