zoukankan      html  css  js  c++  java
  • POJ1087 A Plug for UNIX —— 最大流

    题目链接:https://vjudge.net/problem/POJ-1087

    A Plug for UNIX
    Time Limit: 1000MS   Memory Limit: 65536K
    Total Submissions: 17861   Accepted: 6172

    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种适配器,且每种适配器有无限个,适配器之间可以互相拼接(双向)。问:怎样安排,才能使得尽量多的用电器能充上电?

    题解:

    最大流问题。可知对于一个用电器,他要充电有两种方式,一种是直接将插头插到插孔上去,一种是通过适配器将插头与插孔相连。

    1.建立超级源点,超级源点与每个用电器相连,且边的容量为1,表明这种用电器只有一台。

    2.由于适配器之间可以互相拼接,所以对于每一对能够拼接的适配器,连上一条边,且这条边是双向的,容量为INF,因为题目说明了每种适配器都有无限个,所以这种搭配也有无限个。

    3.用电器与插孔相连,以及用电器与适配器相连,且边的容量都为1,表示这种用电器只有一台。

    4.适配器与插孔相连,且边的容量为INF,因为适配器有无限个。

    5.建立超级汇点,且每个插孔与超级汇点相连,边的容量为1,表明只有一个插孔。

    6.求最大流即可。

    思考:

    若每种适配器只有一个呢?

    把每个适配器拆成两点,且内部连一条边,容量为1,使得流经这种适配器的流量限制在1之内,然后把INF都改成1。推广:如果限制了只有m个,那么边的容量就设置为m。

    代码如下:

      1 #include <iostream>
      2 #include <cstdio>
      3 #include <cstring>
      4 #include <algorithm>
      5 #include <vector>
      6 #include <cmath>
      7 #include <queue>
      8 #include <stack>
      9 #include <map>
     10 #include <string>
     11 #include <set>
     12 using namespace std;
     13 typedef long long LL;
     14 const int INF = 2e9;
     15 const LL LNF = 9e18;
     16 const int mod = 1e9+7;
     17 const int MAXN = 3e2+10;
     18 
     19 int maze[MAXN][MAXN];
     20 int gap[MAXN], dis[MAXN], pre[MAXN], cur[MAXN];
     21 int flow[MAXN][MAXN];
     22 
     23 int sap(int start, int end, int nodenum)
     24 {
     25     memset(cur, 0, sizeof(cur));
     26     memset(dis, 0, sizeof(dis));
     27     memset(gap, 0, sizeof(gap));
     28     memset(flow, 0, sizeof(flow));
     29     int u = pre[start] = start, maxflow = 0, aug = INF;
     30     gap[0] = nodenum;
     31 
     32     while(dis[start]<nodenum)
     33     {
     34         loop:
     35         for(int v = cur[u]; v<nodenum; v++)
     36         if(maze[u][v]-flow[u][v]>0 && dis[u] == dis[v]+1)
     37         {
     38             aug = min(aug, maze[u][v]-flow[u][v]);
     39             pre[v] = u;
     40             u = cur[u] = v;
     41             if(v==end)
     42             {
     43                 maxflow += aug;
     44                 for(u = pre[u]; v!=start; v = u, u = pre[u])
     45                 {
     46                     flow[u][v] += aug;
     47                     flow[v][u] -= aug;
     48                 }
     49                 aug = INF;
     50             }
     51             goto loop;
     52         }
     53 
     54         int mindis = nodenum-1;
     55         for(int v = 0; v<nodenum; v++)
     56             if(maze[u][v]-flow[u][v]>0 && mindis>dis[v])
     57             {
     58                 cur[u] = v;
     59                 mindis = dis[v];
     60             }
     61         if((--gap[dis[u]])==0) break;
     62         gap[dis[u]=mindis+1]++;
     63         u = pre[u];
     64     }
     65     return maxflow;
     66 }
     67 
     68 
     69 /*  建图模式:
     70 
     71                   —— —— —— —— —— ——
     72                  |                 |
     73     超级源点-->device-->adapter-->plug-->超级汇点
     74                          |  |
     75                           --
     76 */
     77 char plug[MAXN][30], dev[MAXN][2][30], ada[MAXN][2][30];
     78 int main()
     79 {
     80     int n, m, k;
     81     scanf("%d", &n);
     82     for(int i = 1; i<=n; i++) scanf("%s", plug[i]);
     83     scanf("%d", &m);
     84     for(int i = 1; i<=m; i++) scanf("%s%s", dev[i][0], dev[i][1]);
     85     scanf("%d",&k);
     86     for(int i = 1; i<=k; i++) scanf("%s%s", ada[i][0], ada[i][1]);
     87 
     88     memset(maze, 0, sizeof(maze));
     89     for(int i = 1; i<=m; i++)   //dev-->plug
     90     for(int j = 1; j<=n; j++)
     91     {
     92         if(!strcmp(dev[i][1],plug[j])) maze[n+i][j] = 1;
     93     }
     94     for(int i = 1; i<=k; i++)   //ada-->ada
     95     for(int j = 1; j<=k; j++)
     96     {
     97         if(i==j) continue;
     98         if(!strcmp(ada[i][1],ada[j][0])) maze[n+m+i][n+m+j] = INF;
     99         if(!strcmp(ada[j][1],ada[i][0])) maze[n+m+j][n+m+i] = INF;
    100     }
    101     for(int i = 1; i<=m; i++)   //dev-->ada
    102     for(int j = 1; j<=k; j++)
    103     {
    104         if(!strcmp(dev[i][1],ada[j][0])) maze[n+i][n+m+j] = 1;
    105         if(!strcmp(dev[i][1],ada[j][1])) maze[n+i][n+m+j] = 1;
    106     }
    107     for(int i = 1; i<=k; i++)   //ada--plug
    108     for(int j = 1; j<=n; j++)
    109     {
    110         if(!strcmp(ada[i][0],plug[j])) maze[n+m+i][j] = INF;
    111         if(!strcmp(ada[i][1],plug[j])) maze[n+m+i][j] = INF;
    112     }
    113 
    114     int start = 0, end = n+m+k+1;
    115     for(int i = 1; i<=m; i++) maze[start][n+i] = 1; //超级源点-->dev
    116     for(int i = 1; i<=n; i++) maze[i][end] = 1;     //plug-->超级汇点
    117 
    118     cout<< m-sap(start, end, n+m+k+2) <<endl;
    119 }
    View Code
  • 相关阅读:
    arcims(HtmlView)开发经验总结《转》
    Oracle sequence
    ajax 简介
    PHP:路在何方?
    ArcIMS初级教程(4)
    设计开发必须收藏的资源网站
    Win2008+IIS7.0+VS2008 在测试调试网站时报错,紧急求救!
    动态生成客户端数组
    解决MySQL不允许从远程访问的方法
    MySql中delimiter的作用是什么
  • 原文地址:https://www.cnblogs.com/DOLFAMINGO/p/8067721.html
Copyright © 2011-2022 走看看