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 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

题意:

这个题意挺难理解的,一开始输入的是插座,然后输入的是插头,最后输入的是转换器。

转换器后面有两个字符串,也就是说能够把插头为第一个的转化为第二个字符串,这里插头有无限个。

要求最大能让多少插头连上插座。

题解:

首先考虑建图的两边,源点连每个插头且边权为1,然后每个插座连上汇点且边权为1。

然后每个插座可以使X->Y(举例),我们就可以想让X连一条边权为无穷大的边到Y。

最后跑一个最大流就是了。注意下输入时对字符串的处理。

注意数组要开到500左右,因为点的最多可能是400。

我这里建图是反过来建的,为了方便~

代码如下:

#include <cstdio>
#include <cstring>
#include <algorithm>
#include <iostream>
#include <vector>
#include <queue>
#include <map>
#define INF 99999999
#define t 500
using namespace std; const int N = ;
int head[N],d[N];
int tot,n,m,k,cnt;
struct Edge{
int v,next,c;
}e[N<<];
char str[N][],s[],tmp[];
void adde(int u,int v,int c){
e[tot].v=v;e[tot].next=head[u];e[tot].c=c;head[u]=tot++;
e[tot].v=u;e[tot].next=head[v];e[tot].c=;head[v]=tot++;
}
bool bfs(int S,int T){
memset(d,,sizeof(d));d[S]=;
queue <int > q;q.push(S);
while(!q.empty()){
int u=q.front();q.pop();
for(int i=head[u];i!=-;i=e[i].next){
int v=e[i].v;
if(!d[v] && e[i].c>){
d[v]=d[u]+;
q.push(v);
}
}
}
return d[T]!=;
}
int dfs(int s,int a){
int flow=,f;
if(s==t || a==) return a;
for(int i=head[s];i!=-;i=e[i].next){
int v=e[i].v;
if(d[v]!=d[s]+) continue ;
f=dfs(v,min(a,e[i].c));
if(f){
e[i].c-=f;
e[i^].c+=f;
flow+=f;
a-=f;
if(a==) break;
}
}
if(!flow) d[s]=-;
return flow;
}
int Dinic(){
int max_flow = ;
while(bfs(,t)){
max_flow+=dfs(,INF);
}
return max_flow;
}
int num=;
int Search(char *s){
if(num==){
strcpy(str[],s);
num++;
return ;
}
for(int i=;i<=num;i++){
if(strcmp(str[i],s)==) return i;
}
num++;
strcpy(str[num],s);
return num;
}
int main(){
scanf("%d",&n);
memset(head,-,sizeof(head));
for(int i=;i<=n;i++){
scanf("%s",s);
int a=Search(s);
adde(,a,);
}
scanf("%d",&m);
for(int i=;i<=m;i++){
scanf("%s%s",tmp,s);
int a=Search(s);
adde(a,t,);
}
scanf("%d",&k);
for(int i=;i<=k;i++){
scanf("%s%s",tmp,s);
int a=Search(tmp),b=Search(s);
adde(b,a,INF);
}
printf("%d",m-Dinic());
return ;
}

最新文章

  1. MVC实用架构设计(三)——EF-Code First(4):数据查询
  2. Android SDK下载和更新失败的解决方法
  3. Windows 7无法卸载及安装IE11的解决方法
  4. poj 3841 Double Queue (AVL树入门)
  5. 看了一本Unity3D的教程
  6. PostgreSQL Replication之第十三章 使用PL/Proxy扩展(2)
  7. ListView配合BaseAdapter
  8. Struts2.x jsp页面无法使用jsp:forward跳转到action
  9. atitit.ajax bp dwr 3.该票据安排使用的流量汇总 VO9o.....
  10. 实现类似QQ自拍头像的功能(demo源码)
  11. S2_OOP第一章
  12. phpstorm(或webstorm) 打开后 一直停留在scanning files to index....,或跳出内存不够的提示框
  13. SignalR Self Host+MVC等多端消息推送服务(4)
  14. NLP系列(3)_用朴素贝叶斯进行文本分类(下)
  15. org.springframework.web.context.ContextLoaderListener 解决方案
  16. Paypal 支付功能的 C# .NET / JS 实现
  17. tomcat 监控脚本
  18. 程序执行流程:猜数字游戏;库的使用:turtle
  19. poj3613 Cow Relays【好题】【最短路】【快速幂】
  20. DS二叉树--层次遍历

热门文章

  1. 某CTF代码审计题
  2. C语言实例解析精粹学习笔记——39(简单的文本编辑器)
  3. c语言中 *p++ 和 (*p)++ 和 *(p++) 和 *(++p) 和++(*p)和 *(p--)和 *(--p)有什么区别?
  4. Date()日期函数浏览器兼容问题踩坑
  5. ip4addr_ntoa和不可重入函数
  6. SQL Server 2005 导出包含(insert into)数据的SQL脚本 (使用存储过程) 分类: 数据库
  7. 25、react入门教程
  8. 【APUE】Chapter16 Network IPC: Sockets &amp; makefile写法学习
  9. C变量之间的转换
  10. spring+apache dbcp +oracle 连接池配置以及优化