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

本文介绍了一个关于插头匹配的问题背景及解决方案。在一个配备多种类型插头的房间中,如何通过有限的适配器让尽可能多的电子设备接入电源成为了一个挑战。文章详细解释了使用最大流算法来解决这个问题的方法。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

点击打开链接

 

A Plug for UNIX
Time Limit: 1000MS Memory Limit: 65536K
Total Submissions: 12975 Accepted: 4325

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 bureaucratic as possible.
Since the room was designed to accommodate reporters and journalists from around the world, it is equipped with electrical receptacles to suit the different shapes of plugs and voltages used by appliances in all of the countries that existed when the room was built. Unfortunately, the room was built many years ago when reporters used very few electric and electronic devices and is equipped with only one receptacle of each type. These days, like everyone else, reporters require many such devices to do their jobs: laptops, cell phones, tape recorders, pagers, coffee pots, microwave ovens, blow dryers, curling
irons, tooth brushes, etc. Naturally, many of these devices can operate on batteries, but since the meeting is likely to be long and tedious, you want to be able to plug in as many as you can.
Before the meeting begins, you gather up all the devices that the reporters would like to use, and attempt to set them up. You notice that some of the devices use plugs for which there is no receptacle. You wonder if these devices are from countries that didn't exist when the room was built. For some receptacles, there are several devices that use the corresponding plug. For other receptacles, there are no devices that use the corresponding plug.
In order to try to solve the problem you visit a nearby parts supply store. The store sells adapters that allow one type of plug to be used in a different type of outlet. Moreover, adapters are allowed to be plugged into other adapters. The store does not have adapters for all possible combinations of plugs and receptacles, but there is essentially an unlimited supply of the ones they do have.

Input

The input will consist of one case. The first line contains a single positive integer n (1 <= n <= 100) indicating the number of receptacles in the room. The next n lines list the receptacle types found in the room. Each receptacle type consists of a string of at most 24 alphanumeric characters. The next line contains a single positive integer m (1 <= m <= 100) indicating the number of devices you would like to plug in. Each of the next m lines lists the name of a device followed by the type of plug it uses (which is identical to the type of receptacle it requires). A device name is a string of at most 24 alphanumeric
characters. No two devices will have exactly the same name. The plug type is separated from the device name by a space. The next line contains a single positive integer k (1 <= k <= 100) indicating the number of different varieties of adapters that are available. Each of the next k lines describes a variety of adapter, giving the type of receptacle provided by the adapter, followed by a space, followed by the type of plug.

Output

A line containing a single non-negative integer indicating the smallest number of devices that cannot be plugged in.

Sample Input

4 
A 
B 
C 
D 
5 
laptop B 
phone C 
pager B 
clock B 
comb X 
3 
B X 
X A 
X D 

Sample Output

1

Source

 
题意是说有n个插头,m个用电器,k(a,b)个转换器,b插头可以转换成a插头。让你求最少有几种用电器插不上插头。
建立一个超级源点,将其与所有的用电器相连,容量为1,在建立一个超级汇点,将其与所有的插头连接,容量为1,然后转换器的两个插头相连接,容量为inf。最好直接求最大流即可。

 

#include<stdio.h>
#include<string.h>
#include<string>
#include<queue>
#include<map>
#define M 607
#define inf 0x3f3f3f
using namespace std;
int g[M][M],pre[M],c[M],flow[M][M];
char s1[30],s2[30];
int n,m,k,num;
map<string,int> mp;

int EK(int s,int t)
{
    int sum=0;
    queue<int>q;
    for(;;)
    {
        memset(pre,-1,sizeof(pre));
        memset(c,0,sizeof(c));
        while(!q.empty())q.pop();
        c[s]=inf;
        q.push(s);
        while(!q.empty())
        {
            int u=q.front();
            q.pop();
            for(int i=1;i<=num;i++)
                if(!c[i]&&g[u][i]>0)
                {
                    pre[i]=u;
                    c[i]=c[u]<g[u][i]?c[u]:g[u][i];
                    q.push(i);
                }

        }
        if(!c[t])break;
        for(int i=t;i!=s;i=pre[i])
        {
            g[pre[i]][i]-=c[t];
            g[i][pre[i]]+=c[t];
        }
        sum+=c[t];
    }
    return sum;
}

int main()
{
    while(scanf("%d",&n)!=EOF)
    {
        memset(g,0,sizeof(g));
        int s=1,t=2;
        num=3;
        while(n--)
        {
            scanf("%s",s1);
            mp[s1]=num;
            g[num++][t]=1;
        }
        scanf("%d",&m);
        int mm=m;
        while(mm--)
        {
            scanf("%s%s",s1,s2);
            mp[s1]=num;
            g[s][num++]=1;
            if(mp.count(s2)==0)
                mp[s2]=num++;
            g[mp[s1]][mp[s2]]=1;
        }
        scanf("%d",&k);
        while(k--)
        {
            scanf("%s%s",s1,s2);
            if(mp.count(s1)==0)
                mp[s1]=num++;
            if(mp.count(s2)==0)
                mp[s2]=num++;
            g[mp[s1]][mp[s2]]=inf;
        }
        int max=EK(s,t);
        printf("%d\n",m-max);
    }
    return 0;
}


 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值