poj1637 Sightseeing tour[最大流+欧拉回路]

混合图的欧拉回路定向问题。

顺便瞎说几句,有向图定欧拉回路的充要条件是每个点入度等于出度,并且图联通。无向图的话只要联通无奇点即可。

欧拉路径的确定应该是无向图联通且奇点数0个或2个,有向图忘了,好像复杂一点,这个真考到就暴力瞎搜吧。

既然每个点的度数都定了,又入度等于出度,那两者对半分,在二分图里左向右连上原图的边,左点集与s连容量为待补充的出度,右点集反之。这样如果我真可以定下来的话,就会有左边所有连边都满流。所以跑最大流看能不能到满流(就是差的总出度)即可。

 1 #include<iostream>
 2 #include<cstdio>
 3 #include<cstring>
 4 #include<algorithm>
 5 #include<queue>
 6 using namespace std;
 7 typedef long long ll;
 8 template<typename T>inline char MIN(T&A,T B){return A<B?A=B,1:0;}
 9 template<typename T>inline char MAX(T&A,T B){return A>B?A=B,1:0;}
10 template<typename T>inline T _min(T A,T B){return A<B?A:B;}
11 template<typename T>inline T _max(T A,T B){return A>B?A:B;}
12 template<typename T>inline T read(T&x){
13     x=0;char c;while(!isdigit(c=getchar()))if(isalpha(c))return x=(int)c;
14     while(isdigit(c))x=(x<<1)+(x<<3)+(c^48),c=getchar();return x;
15 }
16 const int N=200+7,M=3000+7,INF=0x3f3f3f3f;
17 int w[M<<1],v[M<<1],Next[M<<1],Head[N<<1],cur[N<<1],dis[N<<1],tot,s,t,n,m;
18 inline void Addedge(int x,int y,int z){
19     v[++tot]=y,Next[tot]=Head[x],Head[x]=tot,w[tot]=z;
20     v[++tot]=x,Next[tot]=Head[y],Head[y]=tot,w[tot]=0;
21 }
22 #define y v[j]
23 inline char bfs(){
24     queue<int> q;q.push(s),memset(dis,0,sizeof dis),dis[s]=1;
25     for(register int i=1;i<=(n<<1)+2;++i)cur[i]=Head[i];
26     while(!q.empty()){
27         int x=q.front();q.pop();
28         for(register int j=Head[x];j;j=Next[j])if(w[j]&&!dis[y]){
29             dis[y]=dis[x]+1,q.push(y);
30             if(y==t)return 1;
31         }
32     }
33     return 0;
34 }
35 int dinic(int x,int flow){
36     if(!flow||x==t)return flow;
37     int rest=flow,k;
38     for(register int j=cur[x];j&&rest;cur[x]=j,j=Next[j])if(w[j]&&dis[y]==dis[x]+1){
39         if(!(k=dinic(y,_min(rest,w[j]))))dis[y]=0;
40         rest-=k,w[j]-=k,w[j^1]+=k;
41     }
42     return flow-rest;
43 }
44 #undef y
45 int in[N],out[N],cnt[N];
46 int x,y,z,T,p,tmp,ans,sigma;
47 inline void inc(int x,int y){++out[x],++in[y];}
48
49 int main(){//freopen("tmp.in","r",stdin);freopen("tmp.out","w",stdout);
50     read(T);while(T--){
51         read(n),read(m);s=(n<<1)+1,t=(n<<1)+2,p=tot=1,sigma=ans=0;
52         memset(Head,0,sizeof Head),memset(in,0,sizeof in),memset(out,0,sizeof out),memset(cnt,0,sizeof cnt);
53         for(register int i=1;i<=m;++i){
54             read(x),read(y),read(z);if(x==y)continue;
55             z?inc(x,y):(Addedge(x,y+n,1),Addedge(y,x+n,1));++cnt[x],++cnt[y];
56         }
57         for(register int i=1;i<=n;++i)if(cnt[i]&1){
58             printf("impossible\n");p=0;break;
59         }
60         else{
61             tmp=cnt[i]>>1;if(tmp<in[i]||tmp<out[i]){printf("impossible\n");p=0;break;}
62             Addedge(s,i,tmp-out[i]),Addedge(i+n,t,tmp-in[i]),sigma+=tmp-out[i];
63         }
64         if(p){
65             while(bfs())ans+=dinic(s,INF);
66             if(ans==sigma)printf("possible\n");
67             else printf("impossible\n");
68         }
69     }
70     return 0;
71 }

原文地址:https://www.cnblogs.com/saigyouji-yuyuko/p/10357930.html

时间: 2024-11-16 00:44:52

poj1637 Sightseeing tour[最大流+欧拉回路]的相关文章

POJ1637 Sightseeing tour (混合图欧拉回路)(网络流)

Sightseeing tour Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 9100   Accepted: 3830 Description The city executive board in Lund wants to construct a sightseeing tour by bus in Lund, so that tourists can see every corner of the beauti

poj1637 Sightseeing tour 混合图欧拉回路判定

传送门 第一次做这种题, 尽管ac了但是完全不知道为什么这么做. 题目就是给一些边, 有向边与无向边混合, 问你是否存在欧拉回路. 做法是先对每个点求入度和出度, 如果一条边是无向边, 就随便指定一个方向, 然后连一条边, 权值为1. 最后统计入度出度, 如果一个点的(入度-出度)%2==1, 就说明不存在欧拉回路. 如果全都满足, 就判断每个点的入度出度的大小关系, 入度>出度, 就向汇点连一条边, 权值为(入度-出度)/2, 相反的话就向源点连边. 跑一遍最大流, 看是否满流, 如果满流就说

poj 1637 Sightseeing tour —— 最大流+欧拉回路

题目:http://poj.org/problem?id=1637 建图很妙: 先给无向边随便定向,这样会有一些点的入度不等于出度: 如果入度和出度的差值不是偶数,也就是说这个点的总度数是奇数,那么一定无解: 随便定向后,如果定向 x -> y,那么从 y 向 x 连一条容量为1的边,将来选了这条边,表示重新定向成 y -> x 了: 考虑如果选了这条边,那么 x 的出度-1,入度+1,变化量是2: 所以对于每个点,如果入度>出度,从源点向它连容量为 (入度-出度)/2 的边,因为刚才改

poj1637 Sightseeing tour,混合图的欧拉回路问题,最大流解

混合图的欧拉回路问题 题目地址 欧拉回路问题 1 定义 欧拉通路 (Euler tour)--通过图中每条边一次且仅一次,并且过每一顶点的通路. 欧拉回路 (Euler  circuit)--通过图中每条边一次且仅一次,并且过每一顶点的回路. 欧拉图--存在欧拉回路的图.  2 无向图是否具有欧拉通路或回路的判定  G有欧拉通路的充分必要条件为:G 连通,G中只有两个奇度顶点(它们分别是欧拉通路的两个端点). G有欧拉回路(G为欧拉图):G连通,G中均为偶度顶点.  3 有向图是否具有欧拉通路或

POJ 1637 Sightseeing tour (混合图欧拉回路,网络最大流)

http://poj.org/problem?id=1637 Sightseeing tour Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 7498   Accepted: 3123 Description The city executive board in Lund wants to construct a sightseeing tour by bus in Lund, so that tourists can

POJ 1637 Sightseeing tour 混合图欧拉回路存在性判断

没有想到网络流还能解决这一类问题,完全想不到@[email protected] 一开始把所有的无向边制定任意方向有当做有向边看,然后统计每个点的入度和出度.以前有向图的欧拉回路判定是每个点的入读都等于出度,这样可以保证可以回到起点,现在在一些边可以调换方向的情况下,所有定点的入度和出度之差必定为偶数,因为调换任意一条边的方向都会使两个定点的入度和出度变化2,所以要构成一个欧拉回路所有点的入度和出度之差都为偶数,并设差为deg. 现在问题转化成了能否通过改变一些边的方向来是的所有点的入度出度都为

POJ1637:Sightseeing tour(混合图的欧拉回路)

Sightseeing tour Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 10581   Accepted: 4466 题目链接:http://poj.org/problem?id=1637 Description: The city executive board in Lund wants to construct a sightseeing tour by bus in Lund, so that touri

POJ 1637 Sightseeing tour (混合图欧拉回路)

Sightseeing tour Description The city executive board in Lund wants to construct a sightseeing tour by bus in Lund, so that tourists can see every corner of the beautiful city. They want to construct the tour so that every street in the city is visit

POJ1637 Sightseeing tour(判定混合图欧拉回路)

有向连通图存在欧拉回路的充要条件是所有点入度=出度. 首先随便给定所有无向边一个方向(不妨直接是u->v方向),记录所有点的度(记:度=入度-出度). 这时如果有点的度不等于0,那么就不存在欧拉回路,就需要改变那些无向边的方向. 而改变一个无向边的方向,相当于边上两个端点的入度和出度都变化了1,它们的度±2. 另外,这样可以证明如果这时某个点的度为奇数那么一定不存在存在欧拉回路的解. 构图如下:所有无向边(u,v),建立容量为1的(u,v)边:所有度小于0的点u,建立容量为-deg/2的(vs,