POJ 3436 ACM Computer Factory (网络流,最大流)
POJ 3436 ACM Computer Factory (网络流,最大流)
Description
As you know, all the computers used for ACM contests must be identical, so the participants compete on equal terms. That is why all these computers are historically produced at the same factory.
Every ACM computer consists of P parts. When all these parts are present, the computer is ready and can be shipped to one of the numerous ACM contests.
Computer manufacturing is fully automated by using N various machines. Each machine removes some parts from a half-finished computer and adds some new parts (removing of parts is sometimes necessary as the parts cannot be added to a computer in arbitrary order). Each machine is described by its performance (measured in computers per hour), input and output specification.
Input specification describes which parts must be present in a half-finished computer for the machine to be able to operate on it. The specification is a set of P numbers 0, 1 or 2 (one number for each part), where 0 means that corresponding part must not be present, 1 — the part is required, 2 — presence of the part doesn't matter.
Output specification describes the result of the operation, and is a set of P numbers 0 or 1, where 0 means that the part is absent, 1 — the part is present.
The machines are connected by very fast production lines so that delivery time is negligibly small compared to production time.
After many years of operation the overall performance of the ACM Computer Factory became insufficient for satisfying the growing contest needs. That is why ACM directorate decided to upgrade the factory.
As different machines were installed in different time periods, they were often not optimally connected to the existing factory machines. It was noted that the easiest way to upgrade the factory is to rearrange production lines. ACM directorate decided to entrust you with solving this problem.
Input
Input file contains integers P N, then N descriptions of the machines. The description of ith machine is represented as by 2 P + 1 integers Qi Si,1 Si,2...Si,P Di,1 Di,2...Di,P, where Qi specifies performance, Si,j — input specification for part j, Di,k — output specification for part k.
Constraints
1 ≤ P ≤ 10, 1 ≤ N ≤ 50, 1 ≤ Qi ≤ 10000
Output
Output the maximum possible overall performance, then M — number of connections that must be made, then M descriptions of the connections. Each connection between machines A and B must be described by three positive numbers A B W, where W is the number of computers delivered from A to B per hour.
If several solutions exist, output any of them.
Sample Input
Sample input 1
3 4
15 0 0 0 0 1 0
10 0 0 0 0 1 1
30 0 1 2 1 1 1
3 0 2 1 1 1 1
Sample input 2
3 5
5 0 0 0 0 1 0
100 0 1 0 1 0 1
3 0 1 0 1 1 0
1 1 0 1 1 1 0
300 1 1 2 1 1 1
Sample input 3
2 2
100 0 0 1 0
200 0 1 1 1
Sample Output
Sample output 1
25 2
1 3 15
2 3 10
Sample output 2
4 5
1 3 3
3 5 3
1 2 1
2 4 1
4 5 1
Sample output 3
0 0
Http
POJ:https://vjudge.net/problem/POJ-3436
Source
网络流,最大流
题目大意
工厂里有若干机器人负责生产电脑,每个机器人负责加工一部分(这个加工可以是加上一个零件,也可以是减少一个零件),同时,每个机器人对进入其加工的电脑也有要求,对于每一个零件,1代表必须存在才能加工,0代表必须不存在才能加工,而2代表无所谓。每个机器人加工的效率是不一样的。现在给出所有机器人对进入的电脑的要求和出口的形式,以及加工效率,求最大的生产量。
解决思路
题目不是很好理解,需要多读几遍。
我们可以用网络流来解决这道题。
对于每一个机器人i,我们把它拆成两个点(笔者用i和i+n表示,其中n是所有机器人的数量),i表示入口,i+n表示出口并连一条边i->(i+n) ,流量就是机器人的工作效率。
我们再枚举每一对机器人i和j,若i的出口产品能被j接受,则在(i+n)->j之间连一条无穷大的边,当然也可以把边权赋为i与j中效率小的那个(因为再怎么也不会超过它)
然后我们再来考虑源点与汇点,笔者这里用0表示源点,n*2+1表示汇点。我们再枚举每一个机器人,如果某一个机器人的入口全部都是0,则从源点向它连一条无穷大的边;如果某一个机器人的出口全是1,则从它向汇点连一条无穷大的边。
这样,我们在这张图上跑一边最大流即可。
最后我们来考虑如何输出选择的连接方案。
我们可以在建完图后把原图备份一下,在跑完最大流后,将跑完后的图与原图对比,如果发现有流的减少,则说明走了这条边,统计一下即可。
虽然说笔者是使用EK算法实现最大流的,但更推荐时间效率更高的Dinic算法,具体请移步我的这篇文章
代码
#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<algorithm>
#include<vector>
#include<queue>
using namespace std;
const int maxN=200;
const int maxP=30;
const int inf=2147483647;
class Edge//输出时要用
{
public:
int u,v,w;
};
int n,m,P;
int G[maxN][maxN];//图
int G2[maxN][maxN];//备份的图,用来对比输出
int W[maxN];//每个机器人的效率
int In[maxN][maxP];//机器人对入口的要求
int Out[maxN][maxP];//机器人的出口规格
int Path[maxN];//EK算法中存增广路径
int Flow[maxN];//流
Edge Outp[maxN*maxN];//用于输出
bool bfs();//bfs增广
int main()
{
memset(G,0,sizeof(G));
scanf("%d%d",&P,&n);
for (int i=1;i<=n;i++)//输入
{
scanf("%d",&W[i]);
for (int j=1;j<=P;j++)
scanf("%d",&In[i][j]);
for (int j=1;j<=P;j++)
scanf("%d",&Out[i][j]);
}
for (int i=1;i<=n;i++)//给每个点的入点到出点连一条边
G[i][i+n]=W[i];
for (int i=1;i<=n;i++)//给每对出口与入口相对应的点连一条边
for (int j=1;j<=n;j++)
{
bool ok=1;
for (int k=1;k<=P;k++)
if (((Out[i][k]==1)&&(In[j][k]==0))||((Out[i][k]==0)&&(In[j][k]==1)))
{
ok=0;
break;
}
if (ok)
G[i+n][j]=min(W[i],W[j]);
}
for (int i=1;i<=n;i++)//判断能否和汇点或源点连接
{
bool ok=1;
for (int j=1;j<=P;j++)
if (In[i][j]==1)
{
ok=0;
break;
}
if (ok)
G[0][i]=inf;
ok=1;
for (int j=1;j<=P;j++)
if (Out[i][j]==0)
{
ok=0;
break;
}
if (ok)
G[i+n][n*2+1]=inf;
}
memcpy(G2,G,sizeof(G2));//把G存起来,备份一边,方便后面输出答案
int Ans=0;
while (bfs())//笔者这里用EK算法实现最大流
{
int di=Flow[n*2+1];
int now=2*n+1;
int last=Path[now];
while (now!=0)//更新残量网络
{
G[last][now]-=di;
G[now][last]+=di;
now=last;
last=Path[now];
}
Ans+=di;
}
printf("%d ",Ans);//输出答案,统计路径
int top=0;
for (int i=1;i<=n;i++)
for (int j=1;j<=n;j++)
if (G2[i+n][j]>G[i+n][j])
{
top++;
Outp[top].u=i;
Outp[top].v=j;
Outp[top].w=G2[i+n][j]-G[i+n][j];
}
printf("%d\n",top);//输出路径
for (int i=1;i<=top;i++)
printf("%d %d %d\n",Outp[i].u,Outp[i].v,Outp[i].w);
return 0;
}
bool bfs()
{
memset(Path,-1,sizeof(Path));
memset(Flow,0,sizeof(Flow));
queue<int> Q;
while (!Q.empty())
Q.pop();
Q.push(0);
Flow[0]=inf;
do
{
int u=Q.front();
Q.pop();
for (int i=0;i<=2*n+1;i++)
{
if ((Path[i]==-1)&&(G[u][i]>0))
{
Path[i]=u;
Q.push(i);
Flow[i]=min(Flow[u],G[u][i]);
}
}
}
while (!Q.empty());
if (Flow[2*n+1]>0)
return 1;
return 0;
}
POJ 3436 ACM Computer Factory (网络流,最大流)的更多相关文章
- POJ - 3436 ACM Computer Factory 网络流
POJ-3436:http://poj.org/problem?id=3436 题意 组配计算机,每个机器的能力为x,只能处理一定条件的计算机,能输出特定的计算机配置.进去的要求有1,进来的计算机这个 ...
- POJ - 3436 ACM Computer Factory(最大流)
https://vjudge.net/problem/POJ-3436 题目描述: 正如你所知道的,ACM 竞赛中所有竞赛队伍使用的计算机必须是相同的,以保证参赛者在公平的环境下竞争.这就是所有这些 ...
- POJ 3436 ACM Computer Factory(最大流+路径输出)
http://poj.org/problem?id=3436 题意: 每台计算机包含P个部件,当所有这些部件都准备齐全后,计算机就组装完成了.计算机的生产过程通过N台不同的机器来完成,每台机器用它的性 ...
- Poj 3436 ACM Computer Factory (最大流)
题目链接: Poj 3436 ACM Computer Factory 题目描述: n个工厂,每个工厂能把电脑s态转化为d态,每个电脑有p个部件,问整个工厂系统在每个小时内最多能加工多少台电脑? 解题 ...
- POJ 3436 ACM Computer Factory 最大流,拆点 难度:1
题目 http://poj.org/problem?id=3436 题意 有一条生产线,生产的产品共有p个(p<=10)零件,生产线上共有n台(n<=50)机器,每台机器可以每小时加工Qi ...
- poj 3436 ACM Computer Factory 最大流+记录路径
题目 题意: 每一个机器有一个物品最大工作数量,还有一个对什么物品进行加工,加工后的物品是什么样.给你无限多个初始都是000....的机器,你需要找出来经过这些机器操作后最多有多少成功的机器(111. ...
- kuangbin专题专题十一 网络流 POJ 3436 ACM Computer Factory
题目链接:https://vjudge.net/problem/POJ-3436 Sample input 1 3 4 15 0 0 0 0 1 0 10 0 0 0 0 1 1 30 0 1 2 1 ...
- POJ 3436 ACM Computer Factory (拆点+输出解)
[题意]每台计算机由P个零件组成,工厂里有n台机器,每台机器针对P个零件有不同的输入输出规格,现在给出每台机器每小时的产量,问如何建立流水线(连接各机器)使得每小时生产的计算机最多. 网络流的建图真的 ...
- POJ 3436 ACM Computer Factory
题意: 为了追求ACM比赛的公平性,所有用作ACM比赛的电脑性能是一样的,而ACM董事会专门有一条生产线来生产这样的电脑,随着比赛规模的越来越大,生产线的生产能力不能满足需要,所以说ACM董事会想 ...
随机推荐
- Android应用安全之WEB接口安全
Android应用安全不仅包括客户端的安全,也包括web接口的安全.移动App中的Web接口安全主要分为以下几块: 1.SQL注入漏洞 这是一个不能再常见的漏洞类型了,由于App的特性,开发人员认为使 ...
- 2017-2018-2 『网络对抗技术』Exp3:免杀原理与实践
1. 免杀原理与实践说明 一.实验说明 任务一:正确使用msf编码器,msfvenom生成如jar之类的其他文件,veil-evasion,自己利用shellcode编程等免杀工具或技巧:(1.5分) ...
- 20155334 《网络攻防》 Exp7 网络欺诈防范
20155334 <网络攻防> Exp7 网络欺诈防范 一.基础问题回答 通常在什么场景下容易受到DNS spoof攻击 同一局域网下,以及各种公共网络. 在日常生活工作中如何防范以上两攻 ...
- ES6 之reduce的高级技巧
reduce() 方法接收一个函数作为累加器,数组中的每个值(从左到右)开始缩减,最终计算为一个值.reduce() 方法接受四个参数:初始值(或者上一次回调函数的返回值),当前元素值,当前索引,调用 ...
- Asp.Net_Get跟Post
1. Get(即使用QueryString显式传递) 方式:在url后面跟参数. 特点:简单.方便. 缺点:字符串长度最长为255个字符:数据泄漏在url中. 适用数据 ...
- 初入Installshield2015
首先我们来认识一下这款软件:这是一款功能强大的软件打包工具,有着许多强大的功能等着我们去发掘,博主也是最近被这个东西搞得有点晕头, 现在就想让读者朋友们更快的接受这个软件. 这个软件需要的破解工具,大 ...
- cocos2d-x学习之路(二)——分析AppDelegate和HelloWorldScene文件
这里我们来看一下cocos自动给我们生成的工程里有些什么东西,并且分析一下这些代码的用途,来为我们以后编写cocos程序铺下基础. 这里我建议看我这份随笔的看官先看看cocos官网的快速入门手册,不然 ...
- Istio 流量治理功能原理与实战
一.负载均衡算法原理与实战 负载均衡算法(load balancing algorithm),定义了几种基本的流量分发方式,在Istio中共有4种标准负载均衡算法. •Round_Robin: 轮询算 ...
- elasticsearch6.6.0安装配置及elasticsearch-head插件安装
一.最小化安装centos7.6 cat /etc/redhat-release 二.配置网络,可以上外网 三.安装常用命令工具,修改系统时区,校对系统时间,关闭selinux,关闭firewalld ...
- 《陪孩子像搭积木一样学编程》,一起来玩Scratch(1)使用Scratch编程的基本流程
编程是一件很有趣的事情.初次接触编程,你可能不知所措,别担心,这并不复杂.首先,为了让读者对编程有大概的了解,可以把编写Scratch程序的过程分成7个步骤(如图1.8).注意,这是理想状态.在实际的 ...