poj3436 Computer Factory
题意:
电脑公司生产电脑有N个机器,每个机器单位时间产量为Qi。 电脑由P个部件组成,每个机器工作时只能把有某些部件的半成品电脑(或什么都没有的空电脑)变成有另一些部件的半成品电脑或完整电脑(也可能移除某些部件)。求电脑公司的单位时间最大产量,以及哪些机器有协作关系,即一台机器把它的产品交给哪些机器加工。
Sample input
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 output
25 2
1 3 15
2 3 10
输入:电脑由3个部件组成,共有4台机器,1号机器产量15, 能给空电脑加上2号部件,2号 机器能给空电脑加上2号部件和3号部件, 3号机器能把有1个2号部件和3号部件有无均可的电脑变成成品(每种部件各有一个)
输出:单位时间最大产量25,有两台机器有协作关系,
1号机器单位时间内要将15个电脑给3号机器加工
2号机器单位时间内要将10个电脑给3号机器加工
思路:
网络流模型:
1) 添加一个原点S,S提供最初的原料 00000...
2) 添加一个汇点T, T接受最终的产品 11111...
3) 将每个机器拆成两个点: 编号为i的接收节点,和编号为i+n的产出节点(n是机器数目),前者用于接收原料,后者用于提供加工后的半成品或成品。这两个点之间要连一条边,容量为单位时间产量Qi
4) S 连边到所有接收 "0000..." 或 "若干个0及若干个2" 的机器,容量为无穷大
5) 产出节点连边到能接受其产品的接收节点,容量无穷大
6) 能产出成品的节点,连边到T,容量无穷大。
7) 求S到T的最大流
实现:
#include <iostream>
#include <cstdio>
#include <cstring>
#include <queue>
using namespace std; const int INF = 0x3f3f3f3f; int g[][], p, n, q[];
int G[][], G_copy[][], layer[], vis[]; struct node
{
int x, y, c;
}; bool countLayer(int s, int e)
{
layer[s] = ;
queue<int> q;
q.push(s);
memset(vis, , sizeof(vis));
vis[s] = true;
while (!q.empty())
{
int tmp = q.front();
q.pop();
for (int i = ; i <= e; i++)
{
if (G[tmp][i] && !vis[i])
{
layer[i] = layer[tmp] + ;
if (i == e)
{
return true;
}
vis[i] = true;
q.push(i);
}
}
}
return false;
} int dinic(int s, int e)
{
int flow = ;
deque<int> q;
while (countLayer(s, e))
{
memset(vis, , sizeof(vis));
vis[s] = true;
q.push_back(s);
while (!q.empty())
{
int tmp = q.back();
if (tmp == e)
{
int minn = INF;
int min_index = ;
for (int i = ; i < q.size(); i++)
{
if (G[q[i - ]][q[i]] && G[q[i - ]][q[i]] < minn)
{
minn = G[q[i - ]][q[i]];
min_index = i - ;
}
}
for (int i = ; i < q.size(); i++)
{
G[q[i - ]][q[i]] -= minn;
G[q[i]][q[i - ]] += minn;
}
while (q.size() && q.back() != min_index)
{
vis[q.back()] = false;
q.pop_back();
}
flow += minn;
}
else
{
bool flag = false;
for (int i = ; i <= e; i++)
{
if (G[tmp][i] && !vis[i] && layer[i] == layer[tmp] + )
{
vis[i] = true;
q.push_back(i);
flag = true;
break;
}
}
if (!flag && q.size())
{
q.pop_back();
}
}
}
}
return flow;
} int main()
{
while (cin >> p >> n)
{
for (int i = ; i < n; i++)
{
cin >> q[i];
for (int j = ; j < p; j++)
{
cin >> g[i][j];
}
for (int j = ; j < p; j++)
{
cin >> g[i + n][j];
}
}
memset(G, , sizeof(G));
for (int i = ; i < n + ; i++)
{
G[i][i + n] = q[i - ];
}
for (int i = ; i < n + ; i++)
{
bool flag = true;
for (int j = ; j < p; j++)
{
if (g[i - ][j] != && g[i - ][j] != )
{
flag = false;
break;
}
}
if (flag)
{
G[][i] = INF;
}
}
for (int i = n + ; i < * n + ; i++)
{
bool flag = true;
for (int j = ; j < p; j++)
{
if (g[i - ][j] != )
{
flag = false;
break;
}
}
if (flag)
{
G[i][ * n + ] = INF;
}
}
for (int i = n + ; i < * n + ; i++)
{
for (int j = ; j < n + ; j++)
{
bool flag = true;
for (int k = ; k < p; k++)
{
if (!(g[i - ][k] == g[j - ][k] || g[j - ][k] == ))
{
flag = false;
break;
}
}
if (flag)
{
G[i][j] = INF;
}
}
}
for (int i = ; i <= * n + ; i++)
{
for (int j = ; j <= * n + ; j++)
{
G_copy[i][j] = G[i][j];
}
}
cout << dinic(, * n + ) << " ";
int cnt = ;
vector<node> v;
for (int i = n + ; i < * n + ; i++)
{
for (int j = ; j < n + ; j++)
{
if (i - n != j && G[i][j] != G_copy[i][j])
{
cnt++;
node tmp;
tmp.x = i - n - ;
tmp.y = j - ;
tmp.c = G_copy[i][j] - G[i][j];
v.push_back(tmp);
}
}
}
cout << cnt << endl;
for (int i = ; i < v.size(); i++)
{
cout << v[i].x << " " << v[i].y << " " << v[i].c << endl;
}
}
return ;
}
poj3436 Computer Factory的更多相关文章
- POJ3436 ACM Computer Factory —— 最大流
题目链接:https://vjudge.net/problem/POJ-3436 ACM Computer Factory Time Limit: 1000MS Memory Limit: 655 ...
- POJ3436 ACM Computer Factory 【最大流】
ACM Computer Factory Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 5412 Accepted: 1 ...
- POJ-3436 ACM Computer Factory(网络流EK)
As you know, all the computers used for ACM contests must be identical, so the participants compete ...
- poj3436 ACM Computer Factory, 最大流,输出路径
POJ 3436 ACM Computer Factory 电脑公司生产电脑有N个机器.每一个机器单位时间产量为Qi. 电脑由P个部件组成,每一个机器工作时仅仅能把有某些部件的半成品电脑(或什么都没有 ...
- POJ3436 ACM Computer Factory(最大流/Dinic)题解
ACM Computer Factory Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 8944 Accepted: 3 ...
- POJ3436:ACM Computer Factory(最大流)
ACM Computer Factory Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 9963 Accepted: 3 ...
- poj-3436.ACM Computer Factory(最大流 + 多源多汇 + 结点容量 + 路径打印 + 流量统计)
ACM Computer Factory Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 10940 Accepted: ...
- POJ 3436 ACM Computer Factory (网络流,最大流)
POJ 3436 ACM Computer Factory (网络流,最大流) Description As you know, all the computers used for ACM cont ...
- POJ 3464 ACM Computer Factory
ACM Computer Factory Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 4829 Accepted: 1641 ...
随机推荐
- redis02---对于key的操作命令
Redis对于key的操作命令 del key1 key2 ... Keyn 作用: 删除1个或多个键 返回值: 不存在的key忽略掉,返回真正删除的key的数量 rename key newkey ...
- django rest_framework swagger使用案例
环境准备 环境要求: python3 django2 pip3 模块安装: pip3 install django-rest-framework pip3 install django-rest-sw ...
- uboot配置和编译过程详解【转】
本文转载自:http://blog.csdn.net/czg13548930186/article/details/53434566 uboot主Makefile分析1 1.uboot version ...
- Maze 解题报告
Maze Description You are given a special Maze described as an n*m matrix, please find the shortest ...
- 【矩阵---求A的1到N次幂之和】
引例: Matrix Power Series: 题目大意,给定矩阵A,求A^+A^+A^+...A^N. 题解:已知X=a,可以通过以下矩阵求出ans=a^+a^+...a^=矩阵^(n+)后右上格 ...
- BZOJ_1713_[Usaco2007 China]The Bovine Accordion and Banjo Orchestra 音乐会_斜率优化
BZOJ_1713_[Usaco2007 China]The Bovine Accordion and Banjo Orchestra 音乐会_斜率优化 Description Input 第1行输入 ...
- Flask app.config 的配置
原理如下: image.png 1.通过调用自定义config.py文件中config字典,可以得到一个类, 这个类里面定义的都是类变量,这些变量就是自定义的一些配置项. 如下config.py ...
- Linux的终端类型
终端是一个很重要的外设,用过终端设备的人都知道如果设备类型不对就会有乱字符,也可用仿真终端软件如netterm试验一下,Linux的终端信息放在 /usr/share/terminfo下,在这个目录的 ...
- Caused by: Unable to load bean: type: class:com.opensymphony.xwork2.ObjectFactory - bean - jar
转自:https://blog.csdn.net/u011422744/article/details/39851693 在SSH开发,搭建环境的时候,启动tomcat服务器,就报这个异常! 信息: ...
- 使用Ajax选取ListBox的值异步更新视图,并作为表单值提交
一.控制器返回一个ViewBag MultiSelecList值. public ActionResult Create() { ViewBag.ReviewIndexItems = new Mult ...