hdu6311(无向图最小路径覆盖->欧拉路径->fleury 欧拉路径模板)

这题主要是个套路。。就是求无向图最小路径覆盖。。

与有向图的二分图做法不同,这个是转化为求最少的欧拉路径。。

欧拉图有个结论是欧拉路径的个数为度为奇数的点的个数/2(可以类比欧拉回路的结论)

然后求欧拉路径的方法是fleury算法。。其思想就是暴力dfs,然后巧妙的地方就是边是方向取的,即以出栈的顺序为欧拉路径。。

然后就是一大堆细节问题。。大概是今天没什么人做出来的原因。。。

这题其实覆盖得情况比较全面(偶数的欧拉回路,奇数的欧拉回路和欧拉路径、分块求欧拉路径等),作为模板其实挺合适。。可以记下来。。

 

 

 

/**
 *          ┏┓    ┏┓
 *          ┏┛┗━━━━━━━┛┗━━━┓
 *          ┃       ┃  
 *          ┃   ━    ┃
 *          ┃ >   < ┃
 *          ┃       ┃
 *          ┃... ⌒ ...  ┃
 *          ┃              ┃
 *          ┗━┓          ┏━┛
 *          ┃          ┃ Code is far away from bug with the animal protecting          
 *          ┃          ┃   神兽保佑,代码无bug
 *          ┃          ┃           
 *          ┃          ┃        
 *          ┃          ┃
 *          ┃          ┃           
 *          ┃          ┗━━━┓
 *          ┃              ┣┓
 *          ┃              ┏┛
 *          ┗┓┓┏━━━━━━━━┳┓┏┛
 *           ┃┫┫       ┃┫┫
 *           ┗┻┛       ┗┻┛
 */ 
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<iostream>
#include<queue>
#include<cmath>
#include<map>
#include<stack>
#include<set>
#define inc(i,l,r) for(int i=l;i<=r;i++)
#define dec(i,l,r) for(int i=l;i>=r;i--)
#define link(x) for(edge *j=h[x];j;j=j->next)
#define mem(a) memset(a,0,sizeof(a))
#define ll long long
#define eps 1e-12
#define succ(x) (1LL<<x)
#define lowbit(x) (x&(-x))
#define sqr(x) ((x)*(x))
#define mid (x+y>>1)
#define NM 100005
#define nm 400000
#define N 1000005
#define M(x,y) x=max(x,y)
const double pi=acos(-1);
const ll inf=998244353;
using namespace std;
ll read(){
    ll x=0,f=1;char ch=getchar();
    while(!isdigit(ch)){if(ch=='-')f=-1;ch=getchar();}
    while(isdigit(ch))x=x*10+ch-'0',ch=getchar();
    return f*x;
}



struct edge{int t,v;bool f;edge*next,*rev;}e[nm],*h[NM],*o=e;
void _add(int x,int y,int v){o->t=y;o->v=v;o->next=h[x];h[x]=o++;}
void add(int x,int y,int v){_add(x,y,v);_add(y,x,-v);h[x]->rev=h[y];h[y]->rev=h[x];}
int n,m,_x,_y,cnt,b[NM],s;
bool v[NM];
vector<int>a[NM];

void dfs(int x){
    v[x]=true;
    link(x)if(!j->f){
	j->rev->f=j->f=true;
	dfs(j->t);
	if(j->v==0)a[++cnt].clear();else a[cnt].push_back(-j->v);
    }
}

int main(){
    while(~scanf("%d%d",&n,&m)){
	mem(e);mem(h);o=e;mem(b);s=0;mem(v);cnt=0;
	inc(i,1,m){
	    _x=read();_y=read();
	    add(_x,_y,i);
	    b[_x]++;b[_y]++;
	}
	_x=0;
	inc(i,1,n)if(b[i]&1){
		if(_x)add(_x,i,0),_x=0;
		else _x=i;
	}
	inc(i,1,n)if(!v[i]&&b[i]%2)a[++cnt].clear(),dfs(i),cnt--;
	inc(i,1,n)if(!v[i]&&b[i])a[++cnt].clear(),dfs(i);
	printf("%d\n",cnt);
	inc(i,1,cnt){printf("%d ",m=a[i].size());inc(j,0,m-2)printf("%d ",a[i][j]);printf("%d\n",a[i][m-1]);}
	//printf(":::\n");
    }
    return 0;
}

 

 

Cover

Time Limit: 6000/3000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 225    Accepted Submission(s): 36
Special Judge

 

Problem Description

The Wall has down and the King in the north has to send his soldiers to sentinel.
The North can be regard as a undirected graph (not necessary to be connected), one soldier can cover one path. Today there's no so many people still breathing in the north, so the King wants to minimize the number of soldiers he sent to cover each edge exactly once. As a master of his, you should tell him how to arrange soldiers.

 

 

Input

There might be multiple test cases, no more than 20. You need to read till the end of input.
In the first line, two integers n and m, representing the number of nodes and edges in the graph.
In the following m lines, each contain two integers, representing two ends of an edge.
There are no parallel edges or self loops.
1≤n,m≤100000

 

 

Output

For each test case, the first line contains number of needed routes, p.
For the following p lines, an integer x in the beginning, followed by x integers, representing the list of used edges. Every integer should be a positive or negative integer. Its absolute value represents the number of chosen edge (1~n). If it's positive, it shows that this edge should be passed as the direction as the input, otherwise this edge should be passed in the direction different from the input. Edges should be in correct order.

 

 

Sample Input

 

3 3 1 2 1 3 2 3

 

 

Sample Output

 

1 3 1 3 -2

 

 

Source

2018 Multi-University Training Contest 2

 

 

Recommend

chendu   |   We have carefully selected several similar problems for you:  6318 6317 6316 6315 6314 

 

 

Statistic | Submit | Discuss | Note

  • 2
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值