6787.Mail Delivery---TODO

Time Limit: 1s Memory Limit: 512MB

Your task is to deliver mail to the inhabitants of a city. For this reason, you want to find a route whose starting and ending point are the post office, and that goes through every street exactly once.

Input Format(From the terminal/stdin)

The first input line has two integers $n$ and $m$ : the number of crossings and streets. The crossings are numbered $1,\,2,\ldots,\,n$ , and the post office is located at crossing $1$ .

After that, there are m lines describing the streets. Each line has two integers $a$ and $b$ : there is a street between crossings $a$ and $b$ . All streets are two-way streets.

Every street is between two different crossings, and there is at most one street between two crossings.

$2\leq n\leq 10^5$ $1\leq m\leq 2 \cdot 10^5$ $1\leq a,\,b\leq n$

Output Format(To the terminal/stdout)

Print all the crossings on the route in the order you will visit them. You can print any valid solution.

If there are no solutions, print "IMPOSSIBLE".

Sample Input

Copy
6 8
1 2
1 3
2 3
2 4
2 6
3 5
3 6
4 5
 · \n
 · \n
 · \n
 · \n
 · \n
 · \n
 · \n
 · \n
 · \n

Sample Output special judge

Copy
1 2 6 3 2 4 5 3 1
 · · · · · · · · \n
Source: CSES, Graph Algorithms, 1691

Submit

请先 登录

© 2025 FAQs