[POJ1087]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 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 Description
|
|
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 |
|
输出描述 Output Description
|
|
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
|
|
数据范围及提示 Data Size & Hint
|
|
题目中说了!
|
此题最大的难点在于能否把题读懂。读懂之后就很显然是一道最大流的题。我觉得这道题建图里面的点的设计很妙。字符串处理,一个find函数就能找到对应编号,不错!
#include<iostream>
#include<cmath>
#include<algorithm>
#include<cstring>
#include<cstdio>
#include<queue>
#include<string>
using namespace std;
typedef long long LL;
#define mem(a,b) memset(a,b,sizeof(a))
inline int read()
{
int x=,f=;char c=getchar();
while(!isdigit(c)){if(c=='-')f=-;c=getchar();}
while(isdigit(c)){x=x*+c-'';c=getchar();}
return x*f;
}
const int maxn=,maxm=,oo=,maxs=;
int n,mm,k,h1[maxs],h3[maxs],h4[maxs];
string str1[maxs],str2[maxs],str3[maxs],str4[maxs],str5[maxs],list[*maxs];
struct Edge
{
int u,v,f,next;
Edge() {}
Edge(int _1,int _2,int _3,int _4):u(_1),v(_2),f(_3),next(_4) {}
}e[*maxm];
struct Dinic
{
int first[maxn],dis[maxn],cur[maxn],a,b,c,ce,s,t,N;
bool vis[maxn];queue <int> Q;
void addEdge(int a,int b,int c)
{
e[++ce]=Edge(a,b,c,first[a]);first[a]=ce;
e[++ce]=Edge(b,a,,first[b]);first[b]=ce;
}
int find(string a)
{
for(int i=;i<=N;i++)if(a==list[i])return i;
list[++N]=a;return N;
}
void init_build()
{
mem(first,-);ce=-;
s=;t=;N=;
for(int i=;i<=n;i++)
{
list[++N]=str1[i];
addEdge(s,i+,);
}
for(int i=;i<=mm;i++)
{
list[++N]=str2[i];
int t1=find(str5[i]);
addEdge(t1,N,);addEdge(N,t,);
}
for(int i=;i<=k;i++)
{
int t1=find(str3[i]),t2=find(str4[i]);
addEdge(t2,t1,oo);
}
}
bool BFS()
{
mem(dis,);mem(vis,);
while(Q.size())Q.pop();
dis[s]=;vis[s]=;Q.push(s);
while(Q.size())
{
int now=Q.front();Q.pop();
for(int i=first[now];i!=-;i=e[i].next)
if(e[i].f && !vis[e[i].v])
{
vis[e[i].v]=;
dis[e[i].v]=dis[now]+;
Q.push(e[i].v);
}
}
return vis[t];
}
int dfs(int x,int a)
{
if(x==t || a==)return a;
int flow=,tmp;
for(int& i=cur[x];i!=-;i=e[i].next)
if(dis[e[i].v]==dis[x]+ && (tmp=dfs(e[i].v,min(a,e[i].f)))>)
{
e[i].f-=tmp;e[i^].f+=tmp;
a-=tmp;flow+=tmp;
if(a==)break;
}
return flow;
}
int maxflow()
{
int flow=;
while(BFS())
{
for(int i=;i<=N;i++)cur[i]=first[i];
flow+=dfs(s,oo);
}
return flow;
}
}fyh;
int main()
{
n=read();
for(int i=;i<=n;i++)cin>>str1[i];
mm=read();
for(int i=;i<=mm;i++)cin>>str2[i]>>str5[i];
k=read();
for(int i=;i<=k;i++)cin>>str3[i]>>str4[i];
fyh.init_build();
printf("%d\n",mm-fyh.maxflow());
return ;
}
[POJ1087]A Plug for UNIX的更多相关文章
- POJ1087 A Plug for UNIX —— 最大流
题目链接:https://vjudge.net/problem/POJ-1087 A Plug for UNIX Time Limit: 1000MS Memory Limit: 65536K T ...
- POJ1087:A Plug for UNIX(最大流)
A Plug for UNIX 题目链接:https://vjudge.net/problem/POJ-1087 Description: You are in charge of setting u ...
- POJ1087 A Plug for UNIX(网络流)
A Plug for UNIX Time Limit: 1000MS Memory Limit: 65536K Total S ...
- POJ1087 A Plug for UNIX 【最大流】
A Plug for UNIX Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 13855 Accepted: 4635 ...
- POJ1087 A Plug for UNIX 2017-02-12 13:38 40人阅读 评论(0) 收藏
A Plug for UNIX Description You are in charge of setting up the press room for the inaugural meeting ...
- poj1087 A Plug for UNIX(网络流最大流)
http://poj.org/problem?id=1087 好久没遇见过这么坑的题了这个题真是挫的够可以的.题目大意:你作为某高管去住宿了,然后宾馆里有几种插座,分别有其对应型号,你携带了几种用电器 ...
- poj1087 A Plug for UNIX & poj1459 Power Network (最大流)
读题比做题难系列…… poj1087 输入n,代表插座个数,接下来分别输入n个插座,字母表示.把插座看做最大流源点,连接到一个点做最大源点,流量为1. 输入m,代表电器个数,接下来分别输入m个电器,字 ...
- 【uva753/poj1087/hdu1526-A Plug for UNIX】最大流
题意:给定n个插座,m个插头,k个转换器(x,y),转换器可以让插头x转成插头y.问最少有多少个插头被剩下. 题解: 最大流或者二分图匹配.然而我不知道怎么打二分图匹配..打了最大流.这题字符串比较坑 ...
- POJ-1087 A Plug for UNIX (网络流)
思路 电器数1 ~ 100,附带100种接口,注意题目:You notice that some of the devices use plugs for which there is no rece ...
随机推荐
- 动图+源码,演示 Java 中常用数据结构执行过程及原理
阅读本文大概需要 3.7 分钟. 作者:大道方圆 cnblogs.com/xdecode/p/9321848.html 最近在整理数据结构方面的知识, 系统化看了下Java中常用数据结构, 突发奇想 ...
- Java中HashMap和TreeMap的区别
什么是Map集合在数组中我们是通过数组下标来对其内容索引的,而在Map中我们通过对象来对对象进行索引,用来索引的对象叫做key,其对应的对象叫做value.这就是我们平时说的键值对. HashMap ...
- Windows10 64位部署odoo12开发环境
预装Windows10 64位家庭版电脑一台 2019年7月 安装Python,这里的版本选择上有个坑,不要装最新的Python 3.7.x,原因是odoo12依赖pillow 4.0.0库,而这个4 ...
- IntelliJ IDEA 超实用使用技巧分享
https://blog.csdn.net/weixin_38405253/article/details/102583954 知识点概览: 高效率配置 日常使用 必备快捷键(★★) 查找 跳转切换 ...
- 如何解决macbook pro摄像头不工作的问题
背景:上周用qq视频聊天都正常,这周突然显示检测不到摄像头.打开facetime和photo booth也显示“相机未连接”排查一切问题后只好给苹果客服打电话,在客服的帮助下解决了这个问题. 解决办法 ...
- sql server生成随机id
SQL Server中生成随机ID的函数是newId(),但是这样生成出来的随机ID是36位带[-]符号的. select newId(); -- 746516E0-95D6-4BAF-8826-6C ...
- tesseract-ocr 开源引擎使用
国内资料比较少 一搜一大堆一样的 你抄我我抄你 前面怎么下载 怎么安装 怎么使用命令 怎么配中文字体 . 跳过.随便搜搜一大堆 科普下说下 box编辑工具 无论怎么搜jTessBoxEditor ( ...
- VS2008激活找不到密匙输入框
VS2008试用版到期后会无法使用,网上一搜就能找到很多激活码: Visual Studio 2008 Professional Edition: XMQ2Y-4T3V6-XJ48Y-D3K2V-6C ...
- [Silverlight 4] Textbox style模擬Textblock 使可以選取、複製
childwindow 做為訊息視窗,使用textblock,可是textbloc無法選取內容及複製, 就改用textbox假裝成textblock ---原本的textblock <contr ...
- ADO.NET中使用事务
using (SqlConnection conn = new SqlConnection(k2ConnStr)) { SqlCommand cmd = new SqlCommand(sql, con ...