POJ1087 A Plug for UNIX —— 最大流
题目链接:https://vjudge.net/problem/POJ-1087
| Time Limit: 1000MS | Memory Limit: 65536K | |
| Total Submissions: 17861 | Accepted: 6172 |
Description
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
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
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。
代码如下:
#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <vector>
#include <cmath>
#include <queue>
#include <stack>
#include <map>
#include <string>
#include <set>
using namespace std;
typedef long long LL;
const int INF = 2e9;
const LL LNF = 9e18;
const int mod = 1e9+;
const int MAXN = 3e2+; int maze[MAXN][MAXN];
int gap[MAXN], dis[MAXN], pre[MAXN], cur[MAXN];
int flow[MAXN][MAXN]; int sap(int start, int end, int nodenum)
{
memset(cur, , sizeof(cur));
memset(dis, , sizeof(dis));
memset(gap, , sizeof(gap));
memset(flow, , sizeof(flow));
int u = pre[start] = start, maxflow = , aug = INF;
gap[] = nodenum; while(dis[start]<nodenum)
{
loop:
for(int v = cur[u]; v<nodenum; v++)
if(maze[u][v]-flow[u][v]> && dis[u] == dis[v]+)
{
aug = min(aug, maze[u][v]-flow[u][v]);
pre[v] = u;
u = cur[u] = v;
if(v==end)
{
maxflow += aug;
for(u = pre[u]; v!=start; v = u, u = pre[u])
{
flow[u][v] += aug;
flow[v][u] -= aug;
}
aug = INF;
}
goto loop;
} int mindis = nodenum-;
for(int v = ; v<nodenum; v++)
if(maze[u][v]-flow[u][v]> && mindis>dis[v])
{
cur[u] = v;
mindis = dis[v];
}
if((--gap[dis[u]])==) break;
gap[dis[u]=mindis+]++;
u = pre[u];
}
return maxflow;
} /* 建图模式: —— —— —— —— —— ——
| |
超级源点-->device-->adapter-->plug-->超级汇点
| |
--
*/
char plug[MAXN][], dev[MAXN][][], ada[MAXN][][];
int main()
{
int n, m, k;
scanf("%d", &n);
for(int i = ; i<=n; i++) scanf("%s", plug[i]);
scanf("%d", &m);
for(int i = ; i<=m; i++) scanf("%s%s", dev[i][], dev[i][]);
scanf("%d",&k);
for(int i = ; i<=k; i++) scanf("%s%s", ada[i][], ada[i][]); memset(maze, , sizeof(maze));
for(int i = ; i<=m; i++) //dev-->plug
for(int j = ; j<=n; j++)
{
if(!strcmp(dev[i][],plug[j])) maze[n+i][j] = ;
}
for(int i = ; i<=k; i++) //ada-->ada
for(int j = ; j<=k; j++)
{
if(i==j) continue;
if(!strcmp(ada[i][],ada[j][])) maze[n+m+i][n+m+j] = INF;
if(!strcmp(ada[j][],ada[i][])) maze[n+m+j][n+m+i] = INF;
}
for(int i = ; i<=m; i++) //dev-->ada
for(int j = ; j<=k; j++)
{
if(!strcmp(dev[i][],ada[j][])) maze[n+i][n+m+j] = ;
if(!strcmp(dev[i][],ada[j][])) maze[n+i][n+m+j] = ;
}
for(int i = ; i<=k; i++) //ada--plug
for(int j = ; j<=n; j++)
{
if(!strcmp(ada[i][],plug[j])) maze[n+m+i][j] = INF;
if(!strcmp(ada[i][],plug[j])) maze[n+m+i][j] = INF;
} int start = , end = n+m+k+;
for(int i = ; i<=m; i++) maze[start][n+i] = ; //超级源点-->dev
for(int i = ; i<=n; i++) maze[i][end] = ; //plug-->超级汇点 cout<< m-sap(start, end, n+m+k+) <<endl;
}
POJ1087 A Plug for UNIX —— 最大流的更多相关文章
- POJ1087:A Plug for UNIX(最大流)
A Plug for UNIX 题目链接:https://vjudge.net/problem/POJ-1087 Description: You are in charge of setting u ...
- 【poj1087/uva753】A Plug for UNIX(最大流)
A Plug for UNIX Description You are in charge of setting up the press room for the inaugural meeti ...
- 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(网络流)
A Plug for UNIX Time Limit: 1000MS Memory Limit: 65536K Total S ...
- 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.问最少有多少个插头被剩下. 题解: 最大流或者二分图匹配.然而我不知道怎么打二分图匹配..打了最大流.这题字符串比较坑 ...
- ZOJ1157, POJ1087,UVA 753 A Plug for UNIX (最大流)
链接 : http://acm.hust.edu.cn/vjudge/problem/viewProblem.action? id=26746 题目意思有点儿难描写叙述 用一个别人描写叙述好的. 我的 ...
随机推荐
- 【前端学习笔记】2015-09-11~~~~ js中ajax请求返回案例
<body><textarea id='a' rows=100 cols=300>result:</textarea>><script>var a ...
- maven配置中国下载源【转:http://www.cnblogs.com/libingbin/p/5949483.html】
修改 配置文件 maven 安装 路径 F:\apache-maven-3.3.9\conf 修改 settings.xml或者在.m2文件夹下新建一个settings.xml 阿里源 <mir ...
- 通过new ClasspathApplicationContext("applicationContext.xml")找不到文件时
可以把applicationContext.xml放到/WEB-INF/classes目录下使用先说:ClassPathXmlApplicationContext 这个类,默认获取的是WEB-INF/ ...
- NOIP 前夕 模板整理
归并排序: #include<iostream> #include<cstdio> #include<cstring> using namespace std; ] ...
- 洛谷 P1616 疯狂的采药
传送门 题目描述 Description LiYuxiang是个天资聪颖的孩子,他的梦想是成为世界上最伟大的医师.为此,他想拜附近最有威望的医师为师.医师为了判断他的资质,给他出了一个难题.医师把他 ...
- Laravel 5.1的多路由文件的配置
Laravel 5.1的多路由文件的配置 默认的路由配置文件只有一个,\app\Http\routes.php.在同一个文件中写路由容易起冲突,文件会越来越大,就需要定义多个路由文件.找到加载\app ...
- Liunx 下Redis 的安装
一.Redis 的简介 Redis是一款开源的.高性能的键-值存储.它常被称作是一款数据结构服务器,它是一个key-value存储系统.和Memcache类似,Memecache只支持字符窜的数据类型 ...
- [置顶] MySQL -- 创建函数(Function
目标 如何在MySQL数据库中创建函数(Function) 语法 CREATE FUNCTION func_name ( [func_parameter] ) //括号是必须的,参数是可选的 RETU ...
- linxu下查看进程的线程方法;如何知道某个进程或者线程运行在哪个CPU上?
1.top -H -p <pid> ; top -H 在top命令后,按H键:或者top -H 2.ps -T -p <pid> “-T”选项可以开启线程查看 3.htop, ...
- delphi中Record 和Packed Record的区别
Record 和Packed Record 第一种不带packed关键字的结构体表明编译器编译时要求进行字对齐,而第二种带packed关键字的结构体表明编译器编译该结构体时不需要进行字对齐,这种方式对 ...