Poj 3436 ACM Computer Factory (最大流)

题目链接:

  Poj 3436 ACM Computer Factory

题目描述:

  n个工厂,每个工厂能把电脑s态转化为d态,每个电脑有p个部件,问整个工厂系统在每个小时内最多能加工多少台电脑?

解题思路:

  因为需要输出流水线要经过的工厂路径,如果要用电脑状态当做节点的话,就GG了。所以建图的时候要把工厂当做节点。对于节点i,能生产si电脑的节点可以进入节点i,能转化ei电脑的节点可以由i节点进入。要注意对于每一个节点要进行拆点,防止流量发生错误。

  1 #include <queue>
  2 #include <cstdio>
  3 #include <cstring>
  4 #include <iostream>
  5 #include <algorithm>
  6 using namespace std;
  7
  8 const int maxn = 55;
  9 const int INF = 0x3f3f3f3f;
 10 struct node
 11 {
 12     int x, s[20], e[20];
 13 } mach[maxn];
 14 struct node1
 15 {
 16     int s, e, x;
 17 } path[maxn*maxn];
 18 int maps[maxn*2][maxn*2], Maps[maxn*2][maxn*2];
 19 int Layer[maxn*2], p, n, num;
 20
 21 void buildmaps (int s, int e)
 22 {
 23     for (int i=s; i<=e; i++)
 24     {
 25         int j, k;
 26         for (int j=s; j<=e; j++)
 27         {
 28             if (i == j)
 29                 continue;
 30             for (k=0; k<p; k++)
 31             {
 32                 if (mach[i].e[k]==2 || mach[j].s[k]==2)
 33                     continue;
 34                 if (mach[i].e[k] != mach[j].s[k])
 35                     break;
 36             }
 37             if (k == p)
 38                 {
 39                     if (i > 1)
 40                         Maps[i+n][j] = mach[i].x;
 41                     else
 42                         Maps[i][j] = mach[i].x;
 43                 }
 44         }
 45     }
 46
 47     for (int i=0; i<=num; i++)
 48         for (int j=0; j<=num; j++)
 49         maps[i][j] = Maps[i][j];
 50 }
 51
 52 bool CountLayer (int s, int e)
 53 {
 54     queue <int> Q;
 55     memset (Layer, 0, sizeof(Layer));
 56     Layer[s] = 1;
 57     Q.push (s);
 58
 59     while (!Q.empty ())
 60     {
 61
 62         int u = Q.front();
 63         Q.pop();
 64
 65         for (int i=0; i<=num; i++)
 66             if (!Layer[i] && maps[u][i])
 67             {
 68                 Layer[i] = Layer[u] + 1;
 69                 Q.push (i);
 70                 if (i == e)
 71                     return true;
 72             }
 73     }
 74     return false;
 75 }
 76
 77 int Dfs (int u, int e, int maxflow)
 78 {
 79     if (u == e)
 80         return maxflow;
 81
 82     int uflow = 0;
 83     for (int i=0; i<=num; i++)
 84     {
 85         if (maps[u][i] && Layer[i]==Layer[u]+1)
 86         {
 87             int flow = min(maps[u][i], maxflow - uflow);
 88             flow = Dfs (i, e, flow);
 89
 90             uflow += flow;
 91             maps[u][i] -= flow;
 92             maps[i][u] += flow;
 93             if (uflow == maxflow)
 94                 break;
 95         }
 96     }
 97
 98     if (uflow == 0)
 99         Layer[u] = 0;
100
101     return uflow;
102 }
103
104 int Dinic (int s, int e)
105 {
106     int maxflow = 0;
107
108     while (CountLayer(s, e))
109         maxflow += Dfs(s, e, INF);
110
111     return maxflow;
112 }
113
114 int main ()
115 {
116     while (scanf ("%d %d", &p, &n) != EOF)
117     {
118         memset (mach, 0, sizeof(mach));
119         memset (Maps, 0, sizeof(Maps));
120         mach[0].x = INF;
121         for (int i=0; i<p; i++)
122         {
123             mach[0].s[i] = INF;
124             mach[1].e[i] = INF;
125             mach[1].s[i] = 1;
126         }
127
128         for (int i=2; i<n+2; i++)
129         {
130             scanf ("%d", &mach[i].x);
131             for (int j=0; j<p; j++)
132                 scanf ("%d", &mach[i].s[j]);
133             for (int j=0; j<p; j++)
134                 scanf ("%d", &mach[i].e[j]);
135             Maps[i][i+n] = mach[i].x;//拆点
136         }
137
138         int ans, res;
139         res = 0;
140         num = n + n + 1;
141
142         buildmaps (0, n+1);
143         ans = Dinic (0, 1);
144
145         for (int i=2; i<num; i++)
146         {
147             for (int j=2; j<num; j++)
148             {
149
150                 if (i == j+n || j==i+n)
151                     continue;
152
153                 if (Maps[i][j] - maps[i][j] > 0)
154                 {
155                     path[res].x = Maps[i][j] - maps[i][j];
156                     path[res].s = (i - 2) % n + 1;
157                     path[res++].e = (j - 2) % n + 1;
158                 }
159
160             }
161         }
162
163         printf ("%d %d\n", ans, res);
164         for (int i=0; i<res; i++)
165             printf ("%d %d %d\n", path[i].s, path[i].e, path[i].x);
166
167     }
168     return 0;
169 }
时间: 2024-10-07 05:50:15

Poj 3436 ACM Computer Factory (最大流)的相关文章

poj 3436 ACM Computer Factory 最大流拆点+输出路径

题目链接: poj3436 题意: 每台ACM 计算机包含P 个部件,当所有这些部件都准备齐全后,计算机就可以组装了,组装好以后就可以交给竞赛队伍使用了.计算机的生产过程是全自动的,通过N 台不同的机器来完成.每台机器从一台半成品计算机中去掉一些部件,并加入一些新的部件(去除一些部件在有的时候是必须的,因为计算机的部件不能以任意的顺序组装).每台机器用它的性能(每小时组装多少台计算机).输入/输出规格来描述. 输入规格描述了机器在组装计算机时哪些部件必须准备好了.输入规格是由P 个整数组成,每个

POJ 3436 ACM Computer Factory(网络最大流)

http://poj.org/problem?id=3436 ACM Computer Factory Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 5286   Accepted: 1813   Special Judge Description As you know, all the computers used for ACM contests must be identical, so the particip

POJ 3436 ACM Computer Factory (最大流 + 输出路径)

POJ 3436 ACM Computer Factory 链接:http://poj.org/problem?id=3436 题意:每台电脑有P部分,可以通过不同的机器来进行加工.有N台机器,每台机器用2 P +1 个整数来描述:Qi  Si,1  Si,2 ...  Si,p  Di,1  Di,2. ..  Di,p,其中Qi 指定了机器的性能,表示每小时加工的电脑数量.Si,j 为第j 部分的输入规格,0表示该部分不能被加工过,1表示该部分必须被加工过,2表示都可以.Di,k 为第k 部

18.11.23 POJ 3436 ACM Computer Factory(dinic)

描述 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 the

POJ - 3436 ACM Computer Factory 网络流

POJ-3436:http://poj.org/problem?id=3436 题意 组配计算机,每个机器的能力为x,只能处理一定条件的计算机,能输出特定的计算机配置.进去的要求有1,进来的计算机这个位子就要求为1,进去的要求有0,进来的计算机这个位子就要求为0. 思路 因为点上有容量限制,所以把每个点拆掉,连一条容量为这个机器的能力的边.源点向要求为0的机器连容量inf的边,把能完全组装好计算机的机器连向汇点.中间把符合条件的机器间连边,容量为inf: #include <algorithm>

POJ 3436 ACM Computer Factory(最大流+路径输出)

http://poj.org/problem?id=3436 题意: 每台计算机包含P个部件,当所有这些部件都准备齐全后,计算机就组装完成了.计算机的生产过程通过N台不同的机器来完成,每台机器用它的性能(每小时组装多少台电脑).输入/输出规格来描述. 输入规格描述了机器在组装计算机时哪些部件必须准备好了.输入规格是由P个整数组成,每个整数代表一个部件,这些整数取值为0.1或2,其中0表示该部件不应该已经准备好了,1表示该部件必须已经准备好了,2表示该部件是否已经准备好了无关紧要. 输出规格描述了

POJ 3436 ACM Computer Factory

最大流+拆点 #include<cstdio> #include<cstring> #include<string> #include<cmath> #include<vector> #include<queue> #include<algorithm> using namespace std; const int maxn = 2000 + 10; const int INF = 0x7FFFFFFF; struct E

POJ - 3436 ACM Computer Factory (ISAP EK Dinic)

题目大意:有N台机器,每台机器能处理相应型态的电脑,处理完后,电脑将变成另一种形态. 每台机器有相应的工作限度,每次至多处理K台 现在问,在一次流水线生产中,最多可以产生多少台完整的电脑(流水线指的是在每一台机器的工作限度下) 解题思路:题目比较难理解,理解题目的话,就比较好做了 首先,将每台机器的点拆成两个点,权值为工作限度 如果机器能处理的电脑的状态全是0的话,就将其和超级源点连接,表示该机器进行第一步加工 如果机器处理完后的形态与另一台机器能处理的最初形态相同,就将其连线,表示下一台机器可

POJ 3436 ACM Computer Factory 【网络流】【北大ACM/ICPC竞赛训练】

我ac掉网络流的第一题! 先总结一下网络流的一些算法吧,首先是Ford-Fulkerson算法,这个算法是保证了众多网络流算法的[正确性],其他算法也是基于其[优化]得到的.Ford的算法在于引入"反向边"的概念,反向边就是反悔边,代表你给修正以前走了的边一个机会.为什么反向边是对的呢,凭空加进来一条边真的大丈夫吗,关于这个有相关正确性的证明,我也说不清楚只能直觉上去理解. 之后是Edmonds-Karp即最短增广路算法,顾名思义,每次都找到达汇点边数最少的增广路,由此避免一些特定的消