301737: CF329C. Graph Reconstruction

Memory Limit:256 MB Time Limit:3 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Graph Reconstruction

题意翻译

现有一 $n$ 个点 $m$ 条边的简单无向图 $G$,保证每个点的度数均不超过 $2$,试求一与 $G$ 点集相同而边集不相交的简单无向图 $G'$ 使得 $G'$ 中每个点度数均不超过 $2$,且 $G'$ 的边数与 $G$ 相同。 无解请输出$-1$。 $1\le m\le n\le 10^5$ _Translated by Caro23333_

题目描述

I have an undirected graph consisting of $ n $ nodes, numbered 1 through $ n $ . Each node has at most two incident edges. For each pair of nodes, there is at most an edge connecting them. No edge connects a node to itself. I would like to create a new graph in such a way that: - The new graph consists of the same number of nodes and edges as the old graph. - The properties in the first paragraph still hold. - For each two nodes $ u $ and $ v $ , if there is an edge connecting them in the old graph, there is no edge connecting them in the new graph. Help me construct the new graph, or tell me if it is impossible.

输入输出格式

输入格式


The first line consists of two space-separated integers: $ n $ and $ m $ ( $ 1<=m<=n<=10^{5} $ ), denoting the number of nodes and edges, respectively. Then $ m $ lines follow. Each of the $ m $ lines consists of two space-separated integers $ u $ and $ v $ ( $ 1<=u,v<=n; u≠v $ ), denoting an edge between nodes $ u $ and $ v $ .

输出格式


If it is not possible to construct a new graph with the mentioned properties, output a single line consisting of -1. Otherwise, output exactly $ m $ lines. Each line should contain a description of edge in the same way as used in the input format.

输入输出样例

输入样例 #1

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

输出样例 #1

1 4
4 6
1 6
2 7
7 5
8 5
2 8

输入样例 #2

3 2
1 2
2 3

输出样例 #2

-1

输入样例 #3

5 4
1 2
2 3
3 4
4 1

输出样例 #3

1 3
3 5
5 2
2 4

说明

The old graph of the first example: ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF329C/b1129560868ff844afcd23de4bd0225b3c2eaffb.png) A possible new graph for the first example: ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF329C/a236c3432a9690ef14f3805128dc6f4078063345.png) In the second example, we cannot create any new graph. The old graph of the third example: ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF329C/0c623aea06e6e65528063142d300db01a6c49816.png) A possible new graph for the third example: ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF329C/a607e4e3b511cfdb5ff11751224f590048568b98.png)

Input

题意翻译

现有一 $n$ 个点 $m$ 条边的简单无向图 $G$,保证每个点的度数均不超过 $2$,试求一与 $G$ 点集相同而边集不相交的简单无向图 $G'$ 使得 $G'$ 中每个点度数均不超过 $2$,且 $G'$ 的边数与 $G$ 相同。 无解请输出$-1$。 $1\le m\le n\le 10^5$ _Translated by Caro23333_

加入题单

上一题 下一题 算法标签: