【uva 753】A Plug for UNIX(图论--最大流 Dinic)

题意:有N个插头,M个设备和K种转换器。要求插的设备尽量多,问最少剩几个不匹配的设备。

解法:给读入的各种插头编个号,源点到设备、设备通过转换器到插头、插头到汇点各自建一条容量为1的边。跑一次最大流就可得到最多匹配的设备数。

注意啊,我这个代码在神奇?的地方死循环了——判断队列为空的语句......Σ( ° △ °|||)︴所以大家主要看“行文思路” ? :-)

  1 #include<cstdio>
  2 #include<cstdlib>
  3 #include<cstring>
  4 #include<algorithm>
  5 #include<iostream>
  6 #include<queue>
  7 using namespace std;
  8
  9 const int N=110,M=110,K=110;
 10 const int NN=310,MM=310,INF=(int)1e9;
 11 int n,m,k,ts,st,ed,len;
 12 int d[NN],last[NN];
 13 char s[N],ss[N],str[3*N][N];//,sb[M][N];
 14 struct edge{int x,y,fl,next;}a[MM];
 15 queue<int> q;
 16
 17 int mmin(int x,int y) {return x<y?x:y;}
 18 int get_id()
 19 {
 20     for (int i=1;i<=ts;i++)
 21       if (!strcmp(s,str[i])) return i;
 22     strcpy(str[++ts],s);
 23     return ts;
 24 }
 25 void ins(int x,int y,int fl)
 26 {
 27     a[++len].x=x,a[len].y=y,a[len].fl=fl;
 28     a[len].next=last[x],last[x]=len;
 29     a[++len].x=y,a[len].y=x,a[len].fl=0;
 30     a[len].next=last[y],last[y]=len;
 31 }
 32 bool bfs()
 33 {
 34     memset(d,-1,sizeof(d));
 35     while(!q.empty()) q.pop();//这里死循环???-_-|||
 36     q.push(st); d[st]=1;
 37     while (!q.empty())
 38     {
 39       int x=q.front(); q.pop();
 40       for (int i=last[x];i;i=a[i].next)
 41       {
 42         int y=a[i].y;
 43         if (d[y]!=-1||!a[i].fl) continue;//fl
 44         d[y]=d[x]+1, q.push(y);
 45         //if (y==ed) break;//不这样为了第61行的优化
 46       }
 47     }
 48     if (d[ed]==-1) return false;
 49     return true;
 50 }
 51 int dfs(int x,int flow)
 52 {
 53     if (x==ed) return flow;
 54     int sum=0;
 55     for (int i=last[x];i;i=a[i].next)
 56     {
 57       int y=a[i].y;
 58       if (d[y]!=d[x]+1||!a[i].fl) continue;//
 59       int t=dfs(y, mmin(a[i].fl,flow-sum));
 60       a[i].fl-=t, a[i^1].fl+=t;
 61       sum+=t;
 62       if (sum==flow) break;
 63     }
 64     if (sum==0) d[x]=-1;//
 65     return sum;
 66 }
 67 int Dinic()
 68 {
 69     int sum=0;
 70     while (bfs())
 71       sum+=dfs(st,INF);//到这个点时的容量为INF
 72     return sum;
 73 }
 74 int main()
 75 {
 76     int T,x,y;
 77     scanf("%d",&T);
 78     while (T--)
 79     {
 80       st=1,ed=2,len=1,ts=2;
 81       scanf("%d",&n);
 82       memset(last,0,sizeof(last));
 83       for (int i=1;i<=n;i++)
 84       {
 85         scanf("%s",s);
 86         x=get_id();
 87         ins(x,ed,1);
 88       }
 89       scanf("%d",&m);
 90       for (int i=1;i<=m;i++)
 91       {
 92         scanf("%s%s",s,s);
 93         x=get_id();
 94         ins(st,x,1);
 95       }
 96       scanf("%d",&k);
 97       for (int i=1;i<=k;i++)
 98       {
 99         scanf("%s",s);
100         x=get_id();
101         scanf("%s",s);
102         y=get_id();
103         ins(x,y,1);
104       }
105       int ans=Dinic();
106       if (T) printf("\n");
107       printf("%d\n",m-ans);
108     }
109     return 0;
110 }
时间: 2024-10-12 23:02:01

【uva 753】A Plug for UNIX(图论--最大流 Dinic)的相关文章

uva 753 A Plug for UNIX (最大流)

uva 753 A Plug for UNIX You are in charge of setting up the press room for the inaugural meeting of the United Nations Internet eXecutive (UNIX), which has an international mandate to make the free flow of information and ideas on the Internet as cum

POJ 1087--A Plug for UNIX【最大流dinic】

A Plug for UNIX Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 14711   Accepted: 4959 Description You are in charge of setting up the press room for the inaugural meeting of the United Nations Internet eXecutive (UNIX), which has an int

UVA - 753 A Plug for UNIX

Time Limit: 3000MS   Memory Limit: Unknown   64bit IO Format: %lld & %llu Submit Status Description You are in charge of setting up the press room for the inaugural meeting of the United Nations Internet eXecutive (UNIX), which has an international m

UVA 753 A Plug for UNIX 电器插座(最大基数匹配,网络流)

题意:给n个插座,m个设备(肯定要插电了),k种转换头可无限次使用(注意是单向的),问有多少设备最终是不能够插上插座的? 分析: 看起来就是设备匹配插座,所以答案不超过m.这个题适合用网络流来解,可能就是为网流落而生. 假设每种头对应着一个编号(可以用map实现转换string到int),主要在k种转换头的建边,他们之间的转换关系就是编号与编号之间的边,因为可以无限次使用,所以容量无穷.再添加源点和汇点就建完了,汇点连接每个插座,源点连接每个设备,每边容量为1.使用增广路算法就得出解了.注意要空

ZOJ1157, POJ1087,UVA 753 A Plug for UNIX (最大流)

链接 : http://acm.hust.edu.cn/vjudge/problem/viewProblem.action?id=26746 题目意思有点儿难描述 用一个别人描述好的. 我的建图方法:一个源点一个汇点,和所有种类的插座.输入的n个插座直接与源点相连,容量为1,m个物品输入里 记录每个插座对应的物品个数,物品数然后大于0的插座直接连到汇点,意味着最终的物品只能由这些插座流出.中间的插座转换容量都是INF  a b表示  无论多少b都可以选择转化到a. /*-------------

753 - A Plug for UNIX (最大流或二分图匹配)

紫书上网络流部分的第一道例题,  刚刚学了最大流,还没有理解二分图匹配 , 这里就只说一下我用最大流是怎么做的吧 . 我们可以假想一个源点,一个汇点,然后对于每一个设备的插头,从源点连一条线,对于每个插座,连一条线到汇点,且容量都为1 . 然后对于每一个转换器,从原插头到变换后的插头连一条边,因为转换器数量无穷大,所以容量为无穷大 . 这样我们就将原问题抽象成了最大流问题,巧妙的将出入路径的容量赋值为1,以此来让每一个设备匹配到唯一一个容器 .紫书上说这是二分图匹配,也许也暗含着其原理吧  .

POJ1087_A Plug for UNIX(网络流最大流)

解题报告 题意: n个插头m个设备k种转换器.求有多少设备无法插入. 思路: 定义源点和汇点,源点和设备相连,容量为1. 汇点和插头相连,容量也为1. 插头和设备相连,容量也为1. 可转换插头相连,容量也为inf(因为插头有无限个) #include <map> #include <queue> #include <cstdio> #include <vector> #include <cstring> #include <iostream

POJ1087 A Plug for UNIX 【最大流】

A Plug for UNIX Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 13855   Accepted: 4635 Description You are in charge of setting up the press room for the inaugural meeting of the United Nations Internet eXecutive (UNIX), which has an int

uva753 A Plug for UNIX 网络流最大流

C - A Plug for UNIX    You are in charge of setting up the press room for the inaugural meeting of the United Nations Internet eXecutive (UNIX), which has an international mandate to make the free flow of information and ideas on the Internet as cumb