NP-Hard Problem

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 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.

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.

Examples

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.

Solution:

#include <bits/stdc++.h>

using namespace std;

const int N = 1234567;

int color[N];
vector <int> g[N];
int from[N], to[N];

void dfs(int v) {
int sz = g[v].size();
for (int j = 0; j < sz; j++) {
    int u = g[v][j];
    if (color[u] == -1) {
      color[u] = (color[v] ^ 1);
      dfs(u);
    }
  }
}

void print_it(vector <int> z) {
int sz = z.size();
printf("%d\n", sz);
for (int i = 0; i < sz; i++) {
    if (i > 0) {
putchar(' ');
}
printf("%d", 1 + z[i]);
}
printf("\n");
}

int main() {
int n, m;
scanf("%d %d", &n, &m);
for (int i = 0; i < n; i++) {
    g[i].clear();
  }
  for (int i = 0; i < m; i++) {
    int foo, bar;
    scanf("%d %d", &foo, &bar);
    foo--; bar--;
    from[i] = foo;
    to[i] = bar;
    g[foo].push_back(bar);
    g[bar].push_back(foo);
  }
  for (int i = 0; i < n; i++) {
    color[i] = -1;
  }
  for (int i = 0; i < n; i++) {
    if (color[i] == -1) {
      color[i] = 0;
      dfs(i);
    }
  }
  for (int i = 0; i < m; i++) {
    if (color[from[i]] == color[to[i]]) {
      printf("%d\n", -1);
      return 0;
    }
  }
  vector <int> x, y;
for (int i = 0; i < n; i++) {
    if (color[i] == 0) {
      x.push_back(i);
    } else {
      y.push_back(i);
    }
  }
  print_it(x);
  print_it(y);
  return 0;
}