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.  or  (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).
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.  or  (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.
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.
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
In the first sample, you can give the vertex number $2$ to Arya and vertices numbered $1$ and $3$ to Pari and keep vertex number $4$ for yourself (or give it someone, if you wish).
In the second sample, there is no way to satisfy both Pari and Arya.
In the second sample, there is no way to satisfy both Pari and Arya.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted