#A. 【模板】欧拉路径

    Type: RemoteJudge 1000ms 128MiB

【模板】欧拉路径

You cannot submit for this problem because the contest is ended. You can click "Open in Problem Set" to view this problem in normal mode.

题目描述

求有向图字典序最小的欧拉路径。

输入格式

第一行两个整数 n,mn,m 表示有向图的点数和边数。

接下来 mm 行每行两个整数 u,vu,v 表示存在一条 uvu\to v 的有向边。

输出格式

如果不存在欧拉路径,输出一行 No

否则输出一行 m+1m+1 个数字,表示字典序最小的欧拉路径。

4 6
1 3
2 1
4 2
3 3
1 2
3 4
1 2 1 3 3 4 2
5 5
1 2
3 5
4 3
3 4
2 3
1 2 3 4 3 5
4 3
1 2
1 3
1 4
No

提示

对于 50%50\% 的数据,n,m103n,m\leq 10^3

对于 100%100\% 的数据,1u,vn1051\leq u,v\leq n\leq 10^5m2×105m\leq 2\times 10^5

保证将有向边视为无向边后图连通。

数据生成器

提高组选修课——欧拉回路

Not Claimed
Status
Done
Problem
5
Open Since
2024-3-30 11:15
Deadline
2024-4-28 23:59
Extension
24 hour(s)