CF1578C.Cactus Lady and her Cing

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Cactus lady loves her cactuses very much. Especially she likes a small cactus named Cing. Cing can be seen as a connected undirected graph in which every vertex lies on at most one simple cycle. Intuitively, a cactus is a generalization of a tree where some cycles are allowed. Multiedges (multiple edges between a pair of vertices) and loops (edges that connect a vertex to itself) are not allowed.

She bought a special grid for her special little cactus Cing. This grid can be represented as a graph consisting of two paths of length 400000400\,000 , u(0,200000)u(0,199999)u(0,200000)u_{(0, -200\,000)} - u_{(0, -199\,999)} - \ldots - u_{(0, 200\,000)} and u(1,200000)u(1,199999)u(1,200000)u_{(1, -200\,000)} - u_{(1, -199\,999)} - \ldots - u_{(1, 200\,000)} , connected together by 400001400\,001 edges (u(0,i),u(1,i))(u_{(0, i)}, u_{(1, i)}) for each ii . In other words, a grid can be seen as a ladder.

Cactus lady wants to know whether she can embed Cing into this grid, i.e., map each vertex of the cactus onto a separate vertex of the grid while each edge of the cactus will be mapped onto some edge of the grid.

输入格式

The first line contains an integer tt — the number of test cases.

Each test case begins with a line containing two integers nn and mm — the number of vertices and the number of edges in a given cactus, respectively ( 1n2000001 \le n \le 200\,000 ; 0m2500000 \le m \le 250\,000 ).

Each of the following mm lines contains two integers vv and uu , describing the edges of the cactus ( 1v,un,uv1 \le v, u \le n, u \ne v ).

The total sum of all nn in the input doesn't exceed 200000200\,000 .

输出格式

Print an answer for each test case in the same order the cases appear in the input.

For each test case print "No" in the first line, if no layout exists.

Otherwise print "Yes" in the first line, and the following nn lines describing the layout. The ii -th of these nn lines should contain two integers xix_i and yiy_i , the location of the ii -th vertex ( 0xi10 \le x_i \le 1 ; 200000yi200000-200\,000 \le y_i \le 200\,000 ).

输入输出样例

  • 输入#1

    5
    4 3
    1 2
    2 3
    3 4
    
    8 7
    1 2
    3 2
    2 4
    4 5
    4 6
    6 7
    6 8
    
    5 4
    1 2
    1 3
    1 4
    1 5
    
    8 9
    1 2
    2 3
    3 4
    1 4
    4 5
    5 6
    6 7
    7 8
    5 8
    
    10 10
    1 2
    2 3
    3 4
    4 5
    5 6
    6 1
    3 7
    4 8
    1 9
    6 10

    输出#1

    Yes
    0 0
    0 1
    1 1
    1 2
    Yes
    0 3
    1 3
    1 4
    1 2
    0 2
    1 1
    0 1
    1 0
    No
    Yes
    0 0
    1 0
    1 1
    0 1
    0 2
    0 3
    1 3
    1 2
    Yes
    1 1
    1 2
    1 3
    0 3
    0 2
    0 1
    1 4
    0 4
    1 0
    0 0

说明/提示

Empty lines between test cases are for clarity. In real test cases there are no empty lines.

In these notes, we consider the embeddings for tests 2 and 4.

We start with the embedding for test 2.

Here goes the embedding for test 4.

首页