poj3436 ACM Computer Factory 拆点+网络流
ACM Computer Factory
Time Limit: 1000MS | Memory Limit: 65536K | |||
Total Submissions: 4674 | Accepted: 1582 | Special Judge |
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.
【poj3436 ACM Computer Factory 拆点+网络流】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,1Si,2...Si,PDi,1Di,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 150 0 00 1 0 100 0 00 1 1 300 1 21 1 1 30 2 11 1 1 Sample input 2 3 5 50 0 00 1 0 100 0 1 01 0 1 30 1 01 1 0 11 0 11 1 0 300 1 1 21 1 1 Sample input 3 2 2 1000 01 0 2000 11 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
由于该题是节点流量限制,所以应该把每个点拆成两个点,从而转化成边流量限制。
建图:将每台机器看做一个节点,然后把每个节点拆成两个(i和i+n),建边i->i+n,边流量限制为该机器的速度;对于每台机器i,若s[j]=0||s[j]=2,则建边s->i,边流量限制为INF,若d[j]=1,则建边i+n->t,边流量限制为INF;然后枚举所有的机器对(i,j),若符合要求则建边i+n->j,边流量限制为INF。
然后就可以求最大流了,最后输出所有流量大于0的边以及流量。
#include
#include
#includeusing namespace std;
const int MAXN=55;
const int INF=(1<<29);
struct
{
int q;
int s[10],d[10];
}machine[MAXN];
struct Arc
{
int c,f;
};
Arc flow[MAXN*2][MAXN*2];
int level[MAXN*2];
int p,n,s,t;
int bfs()
{
int queue[MAXN*2],front,rear;
front=rear=0;
memset(level,0,sizeof(level));
level[s]=1;
queue[rear++]=s;
while(front!=rear)
{
int v=queue[front++];
for(int i=0;
i<=t;
i++)
{
if(!level[i]&&flow[v][i].f
推荐阅读
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 计算机与时间
- 关于蘑菇街算法数据流(ACM)实现方案
- Artificial|Artificial Intelligence and Computer Vision Salon
- 2021-03-19面部脂肪填充多久能消肿(ACMETEA是怎么提升成活率?都来看看!)
- ACM|HDU 5322 Hope (CDQ分治+NTT)
- acm基础|哈希has散列-字符串hash
- ACM OJ 2036 多边形面积计算
- ACM|回文树(自动机)(练习和总结)
- acm|扩展欧几里德算法(附证明)
- ACM|[dsu] codeforces 375D. Tree and Queries