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

紫书上网络流部分的第一道例题,  刚刚学了最大流,还没有理解二分图匹配 , 这里就只说一下我用最大流是怎么做的吧 。

我们可以假想一个源点,一个汇点,然后对于每一个设备的插头,从源点连一条线,对于每个插座,连一条线到汇点,且容量都为1 。 然后对于每一个转换器,从原插头到变换后的插头连一条边,因为转换器数量无穷大,所以容量为无穷大 。

这样我们就将原问题抽象成了最大流问题,巧妙的将出入路径的容量赋值为1,以此来让每一个设备匹配到唯一一个容器 。紫书上说这是二分图匹配,也许也暗含着其原理吧  。

最大流问题好像适合解决那种匹配问题, 因为其无序性,我们很难定义阶段,而且状态还有可能回到之前的状态,所以不能运用动态规划解决。

另外通过该题也可以看出,要想应用网络流首先应该将实际问题抽象出来,将具体意义的性质或量抽象成网络流模型中的流量或者容量。

细节参见代码:

#include<bits/stdc++.h>
using namespace std;
const int INF = 100000000;
const int maxn = 505;
int T,cnt,n,m,t,k,a[maxn],p[maxn];
char s[maxn],buf[maxn];
map<string,int> pp;
struct Edge{
    int from,to,cap,flow;
    Edge(int u,int v,int c,int f):from(u),to(v),cap(c),flow(f) {}

};
vector<Edge> edges;
vector<int> g[maxn];
void init() {
    for(int i=0;i<maxn;i++) g[i].clear();
    edges.clear();
}
void addedge(int from,int to,int cap) { //增加边并将每个节点对应的边保存在g中
    edges.push_back(Edge(from,to,cap,0));
    edges.push_back(Edge(to,from,0,0));
    t = edges.size();
    g[from].push_back(t-2);
    g[to].push_back(t-1);
}
int maxflow(int s,int t) {
    int flow = 0; //最大流初始化为0
    for(;;) {  //核心算法,需要注意,我们一开始加进来的边的流量都是0,通过求最小残量逐步增广,更新最大流
        memset(a,0,sizeof(a));
        queue<int> Q;
        Q.push(s);
        a[s] = INF;
        while(!Q.empty()) {
            int x = Q.front(); Q.pop();
            for(int i=0;i<g[x].size();i++) {
                Edge& e = edges[g[x][i]];
                if(!a[e.to]&&e.cap > e.flow) {
                    p[e.to] = g[x][i];     //记录每次增加流量的路径
                    a[e.to] = min(a[x],e.cap-e.flow); //求出该道路中所有残量的最小值
                    Q.push(e.to);
                }
            }
            if(a[t]) break;  //到达终点,退出
        }
        if(!a[t]) break; //终点残量为0,不能再增广,break;
        for(int u=t;u != s; u = edges[p[u]].from) {
            edges[p[u]].flow += a[t]; //将所求残量加入到该路径中
            edges[p[u]^1].flow -= a[t]; //将反向路径减去
        }
        flow += a[t]; //更新总的最大流
    }
    return flow;
}
int main() {
    scanf("%d",&T);
    while(T--) {
        scanf("%d",&n);
        init();
        pp.clear(); cnt = 1;
        for(int i=0;i<n;i++) {
            scanf("%s",s);
            if(!pp.count(s)) pp[s] = cnt++;
            addedge(pp[s],500,1); //因为插头种类最大400,故将汇点设为500
        }
        scanf("%d",&m);
        for(int i=0;i<m;i++) {
            scanf("%s%s",buf,s);
            if(!pp.count(s)) pp[s] = cnt++;
            addedge(0,pp[s],1);    //将源点设为0
        }
        scanf("%d",&k);
        for(int i=0;i<k;i++) {
            scanf("%s%s",buf,s);
            if(!pp.count(buf)) pp[buf] = cnt++;
            if(!pp.count(s)) pp[s] = cnt++;
            addedge(pp[buf],pp[s],INF);
        }
        printf("%d\n",m - maxflow(0,500));
        if(T) printf("\n");
    }
    return 0;
}

版权声明:本文为博主原创文章,未经博主允许不得转载。

时间: 2024-10-19 11:19:46

753 - A Plug for UNIX (最大流或二分图匹配)的相关文章

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. /*-------------

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

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

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 (最大流)

A Plug for UNIX Time Limit: 1000MS   Memory Limit: 65536K       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 mandate to make the free

POJ1087:A Plug for UNIX(最大流)

A Plug for UNIX 题目链接:https://vjudge.net/problem/POJ-1087 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 mandate to make the free flow o

POJ A Plug for UNIX (最大流 建图)

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 mandate to make the free flow of information and ideas on the Internet as cumbersome and

POJ 1087 A Plug for UNIX(最大流dinic)

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 mandate to make the free flow of information and ideas on the Internet as cumbersome and

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

hdu 1087 A Plug for UNIX 最大流

题意:http://www.phpfans.net/article/htmls/201012/MzI1MDQw.html 1.在一个会议室里有n种插座,每种插座一个: 2.每个插座只能插一种以及一个电器(或者适配器): 3.有m个电器,每个电器有一个插头需要插在相应一种插座上: 4.不是所有电器都能在会议室找到相应插座: 5.有k种适配器,每种适配器可以有无限多数量: 6.每种适配器(a, b)可以把b类插座变为a类插座: 7.问最后有多少个电器无法使用. 分析:图片来源:http://www.