P7771 【模板】欧拉路径
题目描述
求有向图字典序最小的欧拉路径。
输入格式
无
输出格式
无
说明/提示
对于 $50\%$ 的数据,$n,m\leq 10^3$。
对于 $100\%$ 的数据,$1\leq u,v\leq n\leq 10^5$,$m\leq 2\times 10^5$。
保证将有向边视为无向边后图连通。
本题的数据生成器:
```cpp
#include
#include
using namespace std;
typedef unsigned long long ull;
#define N 100005
#define For(i,x,y)for(i=x;i