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 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, curlingirons, 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 alphanumericcharacters. 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种转换器(数量不限),问最少电器有多少没有插座用。

多源点,,多汇点,采用建立茶几源点和汇点来做。

s->插座->电器->t,对于转换器p(b->a),也就是b->a之间连一条容量为INF的边。

#include<cstdio>#include<cstring>#include<algorithm>#include<vector>#include<string>#include<iostream>#include<queue>#include<cmath>#include<map>#include<stack>#include<bitset>using namespace std;#define REPF( i , a , b ) for ( int i = a ; i <= b ; ++ i )#define REP( i , n ) for ( int i = 0 ; i < n ; ++ i )#define CLEAR( a , x ) memset ( a , x , sizeof a )typedef long long LL;typedef pair<int,int>pil;const int mod = 1000000007;const int INF=0x3f3f3f3f;const int maxn=1000;map<string,int>p;int mp[maxn][maxn];int dis[maxn];int n,m,k,maxflow,st,ed,N;bool BFS(){CLEAR(dis,-1);int q[1100];dis[st]=0;int h=0,r=0;q[++r]=st;while(h<r){int x=q[++h];for(int i=0;i<N;i++){if(dis[i]<0&&mp[x][i]){dis[i]=dis[x]+1;q[++r]=i;}}}if(dis[ed]>0) return true;else return false;}int dfs(int x,int low){int a=0;if(x==ed) return low;for(int i=0;i<N;i++){if(mp[x][i]>0&&dis[i]==dis[x]+1&&(a=dfs(i,min(low,mp[x][i])))){mp[x][i]-=a;mp[i][x]+=a;return a;}}return 0;}void dinic(){maxflow=0;while(BFS())maxflow+=dfs(st,INF);// cout<<"fuck "<<maxflow<<endl;printf("%d\n",m-maxflow);}char str[110][110];int main(){int a,b;char s1[110],s2[110];while(~scanf("%d",&n)){st=0,ed=500;p.clear();int cnt=1;CLEAR(mp,0);REPF(i,1,n){scanf("%s",s1);if(!p[s1]) p[s1]=cnt++;mp[st][p[s1]]=1;}scanf("%d",&m);REPF(i,1,m){scanf("%s%s",s1,s2);if(!p[s1]) p[s1]=cnt++;if(!p[s2]) p[s2]=cnt++;mp[p[s2]][p[s1]]=1;mp[p[s1]][ed]=1;}scanf("%d",&k);REPF(i,1,k){scanf("%s%s",s1,s2);if(!p[s1]) p[s1]=cnt++;if(!p[s2]) p[s2]=cnt++;mp[p[s2]][p[s1]]=INF;}N=ed+1;dinic();}return 0;}

鱼儿爱美,不仅需要鳞甲之美。还需要浮沉活泼之美。

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

相关文章:

你感兴趣的文章:

标签云: