Hide

Problem I
Icy Itinerary

/problems/icyitinerary/file/statement/en/img-0001.jpg
Picture by Stöhrfall, public domain

It is a harsh and cold winter, in a town consisting of $n$ houses. Everybody is asleep in the early morning hours. The snow lies deep on the ground, except on the $m$ roads that connect some pairs of houses. Only Thomas is awake.

Thomas the mailman needs to deliver mail to each of the $n$ houses in the town. The houses are numbered from $1$ to $n$. Thomas will start in his own house (house $1$), and then visit all the other houses in some order. He can use a bicycle to get between two houses connected by a road, and he can use skis if there is no road between the houses. But it is not possible to use skis on roads and the bicycle outside of roads. Switching between bicycle and skis is tedious, so Thomas would like to do this at most once.

Your task is to find an ordering $a_1, a_2, \cdots , a_ n$ of the $n$ houses so that $a_1 = 1$, and there is at most one index $i$ ($2 \leq i \leq n-1$) such that either

  1. $a_{i-1}$ and $a_ i$ are connected by a road, but $a_ i$ and $a_{i+1}$ are not, or

  2. $a_{i-1}$ and $a_ i$ are not connected by a road, but $a_ i$ and $a_{i+1}$ are.

In other words, the sequence starts at $1$ and switches between using roads and non-roads at most once.

Input

The first line contains two integers $n$, $m$ ($2 \leq n \leq 3 \cdot 10^5$, $0 \leq m \leq 3 \cdot 10^5$), the number of houses and the number of roads.

The next $m$ lines each contain two integers $u_ i, v_ i$ ($1 \leq u_ i \neq v_ i \leq n$), meaning that $u_ i$ and $v_ i$ are connected by a road. The roads can be used in both directions, and all the unordered pairs $\{ u_ i, v_ i\} $ are distinct.

There exists a valid ordering for every case in the input.

Output

Print $n$ integers $a_1, a_2, \cdots , a_ n$ on one line, the order in which to visit the houses.

Remember that the first number $a_1$ should be $1$.

Sample Input 1 Sample Output 1
4 4
1 2
1 3
1 4
3 4
1 4 3 2
Sample Input 2 Sample Output 2
5 0
1 2 3 4 5

Please log in to submit a solution to this problem

Log in