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 ...
随机推荐
- jconsole工具检测堆内存变化的使用
jconsole将Java写的程序检测. 从Java 5开始 引入了 JConsole.JConsole 是一个内置 Java 性能分析器,可以从命令行或在 GUI shell 中运行.您可以轻松地使 ...
- ${varname:-defaultvalue}
${varname:-defaultvalue}的意思是:如果varname存在且非null,则返回其值:否则,返回defaultvalue. 用途:如果变量未定义,则返回默认值.
- java内存管理--栈、堆和常量池
今天有朋友问java中String[] str = s.split(",")的内存分析,于是开始查资料并测试.首先,发现在java的内存管理中"常量池"是个很奇 ...
- 【USACO】 奶牛政坛
[题目链接] 点击打开链接 [算法] tarjan算法求LCA [代码] #include<bits/stdc++.h> #define MAXN 200010 #pragma GOC o ...
- 文件的创建,读取,写入,修改,删除---python入门
转自:http://blog.163.com/jackylau_v/blog/static/175754040201181505158356/ 一.用Python创建一个新文件,内容是从0到9的整数, ...
- ol 与ul 的区别
1 <!DOCTYPE html> <html> <body> <ul> <li>咖啡</li> <li>牛奶< ...
- View Programming Guide for iOS ---- iOS 视图编程指南(五)---Animations
Animations Animations provide fluid visual transitions between different states of your user inter ...
- ASP.NET Core MVC 2.x 全面教程_ASP.NET Core MVC 02. Web Host 的默认配置
视频地址: https://www.bilibili.com/video/av38392956/?p=2 语雀 https://www.yuque.com/yuejiangliu/dotnet/ixt ...
- js遍历ajax回调函数返回值中的object对象
function printObject(obj) { //obj = {"cid":"C0","ctext":"区县& ...
- js 将json字符串转换为json对象的方法解析-转
例如: JSON字符串:var str1 = '{ "name": "cxh", "sex": "man" }'; JS ...