luogu#P5022. [NOIP 2018 提高组] 旅行
[NOIP 2018 提高组] 旅行
Background
NOIP 2018 Senior D2T1.
Problem Description
Xiao Y is an OIer who loves traveling. She comes to Country X and plans to visit every city.
Xiao Y learns that there are undirected roads among the cities in Country X. Each undirected road connects two cities. There are no two roads connecting the same pair of cities, and there is no road connecting a city to itself. Also, starting from any city, one can reach any other city through these roads. Xiao Y can only travel from one city to another using these roads.
Xiao Y’s travel plan is as follows: she chooses any city as the starting point, and then starting from it, each time she can either choose a road connected to the current city and go to a city she has not visited before, or go back to the previous city along the road she used when she first visited the current city. When Xiao Y returns to the starting point, she may choose to end the trip or continue. Note that Xiao Y requires that in her plan, every city must be visited.
To make her trip more meaningful, every time she arrives at a new city (including the starting point), she records its index. She knows this will form a sequence of length . She wants this sequence to be lexicographically smallest. Can you help her? For two sequences and of length , we say is lexicographically smaller than if and only if there exists a positive integer such that:
- For any positive integer , the -th element of equals the -th element of .
- The value of the -th element of is smaller than that of the -th element of .
Input Format
The input has lines. The first line contains two integers , separated by a space.
The next lines each contain two integers , indicating that there is a road between the cities numbered and . The two integers are separated by a space.
Output Format
Output one line with integers, representing the lexicographically smallest sequence. Adjacent integers are separated by a space.
6 5
1 3
2 3
2 5
3 4
4 6
1 3 2 5 4 6
6 6
1 3
2 3
2 5
3 4
4 5
4 6
1 3 2 4 5 6
Hint
Constraints
For of the data and all samples, and or .
For different test points, the constraints are as follows:

Translated by ChatGPT 5