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 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 several case. The first line of the input contains the number of cases, and it’s followed bya blank line. The first line of each case 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.

There’s a blank line between test cases.

Output

For each case, print a line containing a single non-negative integer indicating the smallest number of devices that cannot be plugged in. Print a blank line between cases.

Sample Input

1

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

题目大意:给出n,有n个插座(可能相同);给出m,表示有m个电器(电器都不相同,但插头会相同),给出电器名以及插头的类型;给出k,表示有k种转接器(转换器每种都有无限个),给出可以桥接的插头和插座。 问说最少有多少个电器没有插座用。

解题思路:我发现最大流的题目难点都在建图上,图建出来了,最大流就好求了。这题的建图步骤如下:1)构建超级源点s与插座相连,容量为该种插座的数量。2)构建超级汇点t,使电器的插头都连向超级汇点,容量为该种插头的数量。3)根据转换器,构建插座与插头之间的边,容量为INF。然后就开始求最大流。最大流不会求的话,看这里

#include <cstdio>
#include <cstring>
#include <algorithm>
#include <cmath>
#include <cstdlib>
#include <queue>
using namespace std;
typedef long long ll;
const int N = 1005;
const int INF = 0x3f3f3f3f;
int n, m, l, t, s;
int a[N], pre[N], rec[N];
int G[N][N], F[N][N];
char ch[N][N];

int getPos(char* c) {
    for (int i = 0; i < t; i++) {
        if (strcmp(ch[i], c) == 0) return i;
    }
    strcpy(ch[t], c);
    return t++;
}

void input() {
    memset(G, 0, sizeof(G));
    memset(F, 0, sizeof(F));
    memset(ch, 0, sizeof(ch));
    char a[N], b[N];
    scanf("%d\n", &n);
    for (int i = 0; i < n; i++) { //超级源点与插座相连,容量为该插座的数量
        scanf("%s\n", a);
        G[0][getPos(a)]++;
    }
    scanf("%d\n", &m);
    for (int i = 0; i < m; i++) { //记录下边界点,也就是电器
        scanf("%*s %s\n", a);
        rec[i] = getPos(a);
    }
    scanf("%d\n", &l);
    for (int i = 0; i < l; i++) { //转换器,因为转换器有无限多个,所以容量为INF,并且连接两端
        scanf("%s%s\n", a, b);
        G[getPos(b)][getPos(a)] = INF;
    }
    for (int i = 0; i < m; i++) {
        G[rec[i]][t]++;
    }
}
int MaxFlow() {
    int ans = 0;
    while (1) {
        memset(a, 0, sizeof(a));
        memset(pre, 0, sizeof(pre));
        queue<int> Q;
        a[s] = INF;
        Q.push(s);
        while (!Q.empty()) {
            int u = Q.front();  Q.pop();
            for (int v = 1; v <= t; v++) {
                if (!a[v] && G[u][v] > F[u][v]) {
                    if (G[u][v] - F[u][v] > a[v]) {
                        pre[v] = u;
                        Q.push(v);
                        a[v] = min(a[u], G[u][v] - F[u][v]);
                    }
                }
            }
        }
        if (a[t] == 0) break;
        ans += a[t];
        for (int u = t; u != 0; u = pre[u]) {
            F[pre[u]][u] += a[t];
            F[u][pre[u]] -= a[t];
        }
    }
    return ans;
}
int main() {
    int T;
    scanf("%d", &T);
    while (T--) {
        s = 0;
        t = 1;
        input();
        printf("%d\n", m - MaxFlow());
        if (T) printf("\n");
    }
    return 0;
}

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

时间: 2024-10-09 18:58:20

uva 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

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.使用增广路算法就得出解了.注意要空

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

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

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

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

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.