题意:找多条路径覆盖所有的边,求最小路径数,要求输出路径

题解:新建一个点n+1,所有奇点向它连边,然后跑欧拉回路,最后把新加的边删去,一段连续的边就是一条路径

= =但是由于太久没写欧拉回路以及之前的板子有点问题,导致比赛时没做出来

还有一个坑点是,明明题目里说了没有重边,我规定不能访问父亲居然就wa了!!!!

//#pragma comment(linker, "/stack:200000000")
//#pragma GCC optimize("Ofast,no-stack-protector")
//#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")
//#pragma GCC optimize("unroll-loops")
#include<bits/stdc++.h>
#define fi first
#define se second
#define mp make_pair
#define pb push_back
#define pi acos(-1.0)
#define ll long long
#define vi vector<int>
#define mod 1000000007
#define ld long double
#define C 0.5772156649
#define ls l,m,rt<<1
#define rs m+1,r,rt<<1|1
#define pll pair<ll,ll>
#define pil pair<int,ll>
#define pli pair<ll,int>
#define pii pair<int,int>
#define cd complex<double>
#define ull unsigned long long
#define base 1000000000000000000
#define Max(a,b) ((a)>(b)?(a):(b))
#define Min(a,b) ((a)<(b)?(a):(b))
#define fio ios::sync_with_stdio(false);cin.tie(0)
inline void add(ll &a,ll b){a+=b;if(a>=mod)a-=mod;}
inline void sub(ll &a,ll b){a-=b;if(a<0)a+=mod;}
inline ll gcd(ll a,ll b){return b?gcd(b,a%b):a;}
inline ll qp(ll a,ll b){ll ans=1;while(b){if(b&1)ans=ans*a%mod;a=a*a%mod,b>>=1;}return ans;} using namespace std; const double eps=1e-8;
const ll INF=0x3f3f3f3f3f3f3f3f;
const int N=200000+10,maxn=400000+10,inf=0x3f3f3f3f; struct edge{
int to,Next,id;
}e[maxn]; int cur[N];
int cnt,head[N],deg[N];
vi s[N];
int res,n,m,sum;
bool ban[maxn]; inline void init()
{
cnt=res=sum=0;
for(int i = 1; i <= n + 1; i++) {
head[i] = -1;
deg[i] = 0;
}
} inline void add(int u,int v,int id)
{
e[cnt].to=v;
e[cnt].Next=head[u];
e[cnt].id=id;
ban[cnt] = false;
head[u]=cnt++;
e[cnt].to=u;
e[cnt].Next=head[v];
e[cnt].id=id;
ban[cnt] = false;
head[v]=cnt++;
} void dfs(int u,int f)
{
// cout << u << " " << f << endl;
// for(int i=head[u];~i;i=e[i].Next)
while(head[u] != -1)
{
int i = head[u];
int x=e[i].to;
head[u] = e[i].Next;
if(!ban[e[i].id])
{
ban[e[i].id]=1;
dfs(x,u);
if(u!=n+1)
{
if(x!=n+1)
{
s[res].pb(i&1?-e[i].id:e[i].id);
}
else
{
if((int)s[res].size()!=0)res++;
}
}
}
}
} int main()
{
int a, b;
while(~scanf("%d%d",&n, &m))
{
init();
for(int i=1;i<=m;i++)
{
scanf("%d%d", &a, &b);
add(a,b,i);
deg[a]++,deg[b]++;
}
int te=m;
for(int i=1;i<=n;i++)
if(deg[i]&1)
add(i,n+1,++te);
dfs(n+1,-1);
if((int)s[res].size()!=0)res++;
for(int i=1,j;i<=n;i++)
while((j=head[i])!=-1){
head[i] = e[j].Next;
if(!ban[e[j].id])
{
dfs(i,-1);
if(s[res].size()!=0)res++;
}
}
printf("%d\n",res);
for(int i=0;i<res;i++)
{
printf("%d",s[i].size());
for(int j=s[i].size() - 1;j >= 0;--j)
printf(" %d",s[i][j]);
puts("");
s[i].clear();
} // for(int i = 1; i <= n; i++) printf("%d ", head[i]);
}
return 0;
}
/********************
6 6
1 2
2 3
3 4
2 5
3 5
2 6 6 6
1 2
2 3
1 3
4 5
5 6
4 6 31 36
12 28
12 27
27 28
15 26
15 25
25 26
17 23
17 24
23 24
20 21
20 22
21 22
29 30
30 31
29 31
1 2
2 3
3 4
1 4
4 5
4 6
5 7
6 7
7 8
8 9
9 10
10 11
11 12
10 14
14 15
10 13
13 16
16 17
13 18
18 19
19 20 8 7
1 2
2 3
3 4
4 8
5 6
6 7
7 4 ********************/

hdu多校2C的更多相关文章

  1. 2018 HDU多校第四场赛后补题

    2018 HDU多校第四场赛后补题 自己学校出的毒瘤场..吃枣药丸 hdu中的题号是6332 - 6343. K. Expression in Memories 题意: 判断一个简化版的算术表达式是否 ...

  2. 2018 HDU多校第三场赛后补题

    2018 HDU多校第三场赛后补题 从易到难来写吧,其中题意有些直接摘了Claris的,数据范围是就不标了. 如果需要可以去hdu题库里找.题号是6319 - 6331. L. Visual Cube ...

  3. 2015 HDU 多校联赛 5363 Key Set

    2015 HDU 多校联赛 5363 Key Set 题目: http://acm.hdu.edu.cn/showproblem.php? pid=5363 依据前面给出的样例,得出求解公式 fn = ...

  4. 2015 HDU 多校联赛 5317 RGCDQ 筛法求解

    2015 HDU 多校联赛 5317 RGCDQ 筛法求解 题目  http://acm.hdu.edu.cn/showproblem.php? pid=5317 本题的数据量非常大,測试样例多.数据 ...

  5. [HDU多校]Ridiculous Netizens

    [HDU多校]Ridiculous Netizens 点分治 分成两个部分:对某一点P,连通块经过P或不经过P. 经过P采用树形依赖背包 不经过P的部分递归计算 树型依赖背包 v点必须由其父亲u点转移 ...

  6. 【杂题总汇】HDU多校赛第十场 Videos

    [HDU2018多校赛第十场]Videos 最后一场比赛也结束了…… +HDU传送门+ ◇ 题目 <简要翻译> 有n个人以及m部电影,每个人都有一个快乐值.每场电影都有它的开始.结束时间和 ...

  7. hdu多校1002 Balanced Sequence

    Balanced Sequence Time Limit: / MS (Java/Others) Memory Limit: / K (Java/Others) Total Submission(s) ...

  8. HDU多校(Distinct Values)

    Problem Description Chiaki has an array of n positive integers. You are told some facts about the ar ...

  9. hdu多校6

    这个场要恶心死我了.. 1001 积分题,不要四舍五入 //#pragma comment(linker, "/stack:200000000") //#pragma GCC op ...

随机推荐

  1. ajax 拦截器设置请求头

    使用vue-resource时,往headers里添加token后,post方法会自动变成options? Vue.http.interceptors.push(function(request, n ...

  2. Gatling新一代压力测试工具,新一代服务器性能测试工具Gatling

    Gatling新一代压力测试工具新一代服务器性能测试工具Gatlinghttp://www.infoq.com/cn/articles/new-generation-server-testing-to ...

  3. C_Learning(2)

    /指针 /指针变量指向一个变量的地址 /给指针变量赋的值只能是地址 /指针变量的赋值 /{ int a; int *p; p=&a; } or { int a; int *p=&a; ...

  4. 20145331魏澍琛《网络对抗》Exp5 MSF基础应用

    20145331魏澍琛<网络对抗>Exp5 MSF基础应用 基础问题回答 1.用自己的话解释什么是exploit,payload,encode? exploit:渗透攻击的模块合集,将真正 ...

  5. 【转】linux之cp/scp命令+scp命令详解

    linux之cp/scp命令+scp命令详解   名称:cp 使用权限:所有使用者 使用方式: cp [options] source dest cp [options] source... dire ...

  6. cmd命令安装、卸载、启动和停止Windows Servic

    1.运行--〉cmd:打开cmd命令框 2.在命令行里定位到InstallUtil.exe所在的位置 InstallUtil.exe 默认的安装位置是在C:/Windows/Microsoft.NET ...

  7. ubuntu下转换flv格式为mp4格式

    一.环境 ubuntu 16.04 二.安装工具 sudo apt install libav-tools 三.开始转换 avconv -i input.flv -codec copy output. ...

  8. IntelliJ IDEA 在运行web项目时部署的位置

    在idea中运行tomcat,把项目部署到其中,运行起来,去tomcat目录下去看,根本找不到部署的项目,那么项目是怎么运行的? 在idea中配置的tomcat,在运行时idea不会把项目放到该路径下 ...

  9. POJ1128 Frame Stacking(拓扑排序+dfs)题解

    Description Consider the following 5 picture frames placed on an 9 x 8 array.  ........ ........ ... ...

  10. User-Defined Table Types 用户自定义表类型

    Location 数据库--可编程性--类型--用户定义表类型 select one database--> programmability-->types-->user--defi ...