#P1364D. Ehab's Last Corollary

    ID: 3197 Type: RemoteJudge 1000ms 256MiB Tried: 1 Accepted: 1 Difficulty: 7 Uploaded By: Tags>constructive algorithmsdfs and similargraphsgreedyimplementationtrees*2100

Ehab's Last Corollary

Description

Given a connected undirected graph with nn vertices and an integer kk, you have to either:

  • either find an independent set that has exactly k2\lceil\frac{k}{2}\rceil vertices.
  • or find a simple cycle of length at most kk.

An independent set is a set of vertices such that no two of them are connected by an edge. A simple cycle is a cycle that doesn't contain any vertex twice.

I have a proof that for any input you can always solve at least one of these problems, but it's left as an exercise for the reader.

The first line contains three integers nn, mm, and kk (3kn1053 \le k \le n \le 10^5, n1m2105n-1 \le m \le 2 \cdot 10^5) — the number of vertices and edges in the graph, and the parameter kk from the statement.

Each of the next mm lines contains two integers uu and vv (1u,vn1 \le u,v \le n) that mean there's an edge between vertices uu and vv. It's guaranteed that the graph is connected and doesn't contain any self-loops or multiple edges.

If you choose to solve the first problem, then on the first line print 11, followed by a line containing k2\lceil\frac{k}{2}\rceil distinct integers not exceeding nn, the vertices in the desired independent set.

If you, however, choose to solve the second problem, then on the first line print 22, followed by a line containing one integer, cc, representing the length of the found cycle, followed by a line containing cc distinct integers not exceeding nn, the vertices in the desired cycle, in the order they appear in the cycle.

Input

The first line contains three integers nn, mm, and kk (3kn1053 \le k \le n \le 10^5, n1m2105n-1 \le m \le 2 \cdot 10^5) — the number of vertices and edges in the graph, and the parameter kk from the statement.

Each of the next mm lines contains two integers uu and vv (1u,vn1 \le u,v \le n) that mean there's an edge between vertices uu and vv. It's guaranteed that the graph is connected and doesn't contain any self-loops or multiple edges.

Output

If you choose to solve the first problem, then on the first line print 11, followed by a line containing k2\lceil\frac{k}{2}\rceil distinct integers not exceeding nn, the vertices in the desired independent set.

If you, however, choose to solve the second problem, then on the first line print 22, followed by a line containing one integer, cc, representing the length of the found cycle, followed by a line containing cc distinct integers not exceeding nn, the vertices in the desired cycle, in the order they appear in the cycle.

Sample Input 1

4 4 3
1 2
2 3
3 4
4 1

Sample Output 1

1
1 3

Sample Input 2

4 5 3
1 2
2 3
3 4
4 1
2 4

Sample Output 2

2
3
2 3 4

Sample Input 3

4 6 3
1 2
2 3
3 4
4 1
1 3
2 4

Sample Output 3

2
3
1 2 3

Sample Input 4

5 4 5
1 2
1 3
2 4
2 5

Sample Output 4

1
1 4 5

Note

In the first sample:

Notice that printing the independent set {2,4}\{2,4\} is also OK, but printing the cycle 12341-2-3-4 isn't, because its length must be at most 33.

In the second sample:

Notice that printing the independent set {1,3}\{1,3\} or printing the cycle 2142-1-4 is also OK.

In the third sample:

In the fourth sample: