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).
Input The first line of the input contains two integers n and m (2?≤?n?≤?100?000, 1?≤?m?≤?100?000) — 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 ui and vi (1??≤??ui,??vi??≤??n), denoting an undirected edge between ui and vi. It’s guaranteed the graph won’t contain any self-loops or multiple edges.
Output 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.
Example Input 4 2 1 2 2 3 Output 1 2 2 1 3 Input 3 3 1 2 2 3 1 3 Output -1 Note 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.
把一張圖分給兩個人,使得兩個人獲得的子圖都是a vertex cover,滿足這個的條件就是任意一條邊兩端的至少一點屬于該子圖。所以只需要染色,如果所有邊兩端的點都是不同顏色,就可以這樣分給兩人,否則不行。孤立的點不用管。
#include<iostream>#include<stdio.h>#include<algorithm>#include<string>#include<map>#include<vector>#include<set>using namespace std;int n, m;vector<int> e[100005];int color[100005];bool dfs(int x){ bool ans = 1; while (!e[x].empty()){ int nn = e[x][e[x].size() - 1]; e[x].pop_back(); if (color[nn] == 0){ color[nn] = 3 - color[x]; ans = dfs(nn); } if (ans == 0){ break; } else if (color[nn] == color[x]){ ans = 0; break; } } return ans;}int main(){ scanf("%d%d", &n,&m); int a, b; for (int i = 0; i < m; i++){ scanf("%d%d", &a, &b); e[a].push_back(b); e[b].push_back(a); } bool is_ans = 1; for (int i = 1; i <= n; i++){ if (!e[i].empty()){ if (color[i] == 0){ color[i] = 1; } is_ans = dfs(i); } if (!is_ans)break; } if (is_ans){ int a = 0, b = 0; vector<int>ansa, ansb; for (int i = 1; i <= n; i++){ if (color[i] == 1){ a++; ansa.push_back(i); } else if (color[i] == 2){ b++; ansb.push_back(i); } } printf("%d/n",a); for (int i = 0; i < a; i++){ printf("%d", ansa[i]); if (i < a - 1)printf(" "); } printf("/n"); printf("%d/n", b); for (int i = 0; i < b; i++){ printf("%d", ansb[i]); if (i < b - 1)printf(" "); } } else{ printf("-1"); } return 0;}新聞熱點
疑難解答