Score : $500$ points
You are given a connected undirected simple graph, which has $N$ vertices and $M$ edges. The vertices are numbered $1$ through $N$, and the edges are numbered $1$ through $M$. Edge $i$ connects vertices $A_i$ and $B_i$. Your task is to find a path that satisfies the following conditions:
It can be proved that such a path always exists. Also, if there are more than one solution, any of them will be accepted.
Input is given from Standard Input in the following format:
$N$ $M$ $A_1$ $B_1$ $A_2$ $B_2$ $:$ $A_M$ $B_M$
Find one path that satisfies the conditions, and print it in the following format. In the first line, print the count of the vertices contained in the path. In the second line, print a space-separated list of the indices of the vertices, in order of appearance in the path.
5 6 1 3 1 4 2 3 1 5 3 5 2 4
4 2 3 1 4
There are two vertices directly connected to vertex $2$: vertices $3$ and $4$. There are also two vertices directly connected to vertex $4$: vertices $1$ and $2$. Hence, the path $2$ → $3$ → $1$ → $4$ satisfies the conditions.
7 8 1 2 2 3 3 4 4 5 5 6 6 7 3 5 2 6
7 1 2 3 4 5 6 7