题库练习 NP-Hard Problem
← 上一题 下一题 →

A10385 | NP-Hard Problem

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

Recently, Pari and Arya did some research about NP-Hard problems and they found the minimum vertex cover problem very interesting.

Suppose the graph $G$ is given. Subset $A$ of its vertices is called a vertex cover of this graph, if for each edge $uv$ there is at least one endpoint of it in this set, i.e. ![](/uploads/luogu/CF687A/346f03956cdac7458eec43b55228ce8629640261_2410e0cf645b.png) or ![](/uploads/acgo/image/02d9199473159c78_e1e986d8cf1f.jpeg) (or both).

Pari and Arya have won a great undirected graph as an award in a team contest. Now they have to split it in two parts, but both of them want their parts of the graph to be a vertex cover.

They have agreed to give you their graph and you need to find two disjoint subsets of its vertices $A$ and $B$ , such that both $A$ and $B$ are vertex cover or claim it's impossible. Each vertex should be given to no more than one of the friends (or you can even keep it for yourself).

输入格式

The first line of the input contains two integers $n$ and $m$ ( $2<=n<=100000$ , $1<=m<=100000$ ) — the number of vertices and the number of edges in the prize graph, respectively.

Each of the next $m$ lines contains a pair of integers $u_{i}$ and $v_{i}$ ( $1<=u_{i},v_{i}<=n$ ), denoting an undirected edge between $u_{i}$ and $v_{i}$ . It's guaranteed the graph won't contain any self-loops or multiple edges.

输出格式

If it's impossible to split the graph between Pari and Arya as they expect, print "-1" (without quotes).

If there are two disjoint sets of vertices, such that both sets are vertex cover, print their descriptions. Each description must contain two lines. The first line contains a single integer $k$ denoting the number of vertices in that vertex cover, and the second line contains $k$ integers — the indices of vertices. Note that because of $m>=1$ , vertex cover cannot be empty.

输入输出样例

输入 #1
4 2
1 2
2 3
输出 #1
1
2 
2
1 3 
输入 #2
3 3
1 2
2 3
1 3
输出 #2
-1
C++ 编辑器
输入
输出