시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 512 MB44171743.590%

문제

Afanasy has a simple connected undirected graph. Afanasy plays a game on this graph. Initially, there is a chip in the vertex 1. Afanasy can move the chip along the edges of the graph arbitrarily: at any moment he can choose any edge adjacent to the current vertex, including already visited edges, or the edge he used on the previous step.

Every k-th edge passed by the chip becomes colored (that is, edges will be colored on k-th step, 2k-th step, and so on). If Afanasy tries to color an edge that is already colored, he loses. To win, he needs to color all the edges of the graph. Help Afanasy win, and find a sequence of movements of the chip such that all edges are colored exactly once, or determine that it is impossible.

입력

The first line contains three integers n, m, k: the number of vertices and edges in the graph, and the given parameter (1 ≤ n ≤ 100 000, n − 1 ≤ m ≤ 100 000, 1 ≤ k ≤ 10).

The next m lines describe the edges of the graph. Each of them contains two different integers u and v: the two vertices connected by an edge (1 ≤ u, v ≤ n).

It is guaranteed that the graph is connected, and also contain no multiple edges and no loops.

출력

If there is no suitable path, print the only integer −1. Otherwise, on the first line, print one integer: the number of vertices on the path. On the next line, print the numbers of these vertices in the order of visiting.

The path cannot contain more than 1 000 001 vertices. The path should start at the vertex 1 and is allowed to finish at any vertex. If there are multiple suitable paths, you are allowed to output any one of them.

예제 입력 1

3 3 1
1 2
2 3
3 1

예제 출력 1

4
1 2 3 1

예제 입력 2

3 3 2
1 2
2 3
3 1

예제 출력 2

7
1 2 3 1 2 3 1