题意:

有很多台机器,可以把物件从一种状态改装成另一种状态,初始全为\(0\),最终状态全为\(1\),让你可以拼凑机器,请问最大总性能为多少,且要求输出方案。

题解:

这道题是真的水啊,我不想写太多,加一点吧。我们发现,把一个机器当作点来看的话一个机器的加工数即为点权。而点权在网络流的题目里是\(SB\),于是考虑转化为边权。而且我们要控制流量,于是考虑进行拆点。

把点拆开后,因为初始是全为\(0\)的,所以将所有初始状态为\(0\)的机器的入点与超级源点连边,而所有最终状态为\(1\)的机器的出点与超级汇点连边。然后为了形成一条工业线,就去寻找如果有两个机器\(A,B\),其中\(A\)的最终状态就是\(B\)的初始状态,那么\(A\)的出点就会向\(B\)的入点连边。也就是他们可以形成匹配,因为这里你是要跑出一条路径来。

最后跑一遍\(Dinic\),即可求得第一个答案。

那么如何去输出方案呢?另外再开一个数组记录最开始的流量,最后去一一比较,如果存在最终流量与最开始的流量不一样,那么这条边就被用了,然后输出对应的两个点即可。而这边还要你输出匹配的机器方案有几行,那就跑两次就好了。

建模:

\([1]S\)向每个初始全为\(0\)的机器连一条流量为\(INF\)的边,因为你一台机器是可以和多台匹配的,而能不能匹配和可不可以匹配取决于你们之间的关系与剩余流量

\([2]T\)向每个末尾全为\(1\)的机器连一条权值也为\(INF\)的边,因为你一末尾也可以与多台匹配

\([3]\)寻找两个可以匹配的边,这之间同样连流量为\(INF\)的边

\([4]\)每个点的入点向出点连流量为性能效率的边

\(code\):

  1. #include<bits/stdc++.h>
  2. #define int long long
  3. using namespace std;
  4. template<typename T> inline void read(T &x){
  5. T f=1;x=0;
  6. char ch=getchar();
  7. while(!isdigit(ch)){if(ch=='-') f=-1;ch=getchar();}
  8. while(isdigit(ch)){x=(x<<1)+(x<<3)+(ch^48);ch=getchar();}
  9. x*=f;
  10. }
  11. const int N = 205,M = 2e4,INF=2e9;
  12. int p,n,nex[M],first[M],v[M],flow[M],num=1,ans=0;
  13. int ss[N][N],tt[N][N],f[N];
  14. int s,t,nxt[N],fro[N],ft[N];
  15. void add(int from,int to,int val){
  16. nex[++num]=first[from];
  17. first[from]=num;
  18. v[num]=to;
  19. ft[num]=val;
  20. flow[num]=val;
  21. fro[num]=from;
  22. }
  23. int dep[N],q[N],no[N];
  24. bool bfs(int s,int t){
  25. memset(dep,0,sizeof(dep));
  26. q[1]=s;
  27. dep[s]=1;
  28. no[s]=first[s];
  29. int head=0,tail=1;
  30. while(head!=tail){
  31. int u=q[++head];
  32. for(int i=first[u];i;i=nex[i]){
  33. int to=v[i];
  34. if(flow[i] && !dep[to]){
  35. no[to]=first[to];
  36. dep[to] = dep[u] + 1;
  37. q[++tail] = to;
  38. }
  39. }
  40. }
  41. return dep[t]!=0;
  42. }
  43. int aim;
  44. int dfs(int now,int fl){
  45. if(now==aim) return fl;
  46. int f=0;
  47. for(int i=no[now];i&&fl;i=nex[i]){
  48. no[now]=i;
  49. int to=v[i];
  50. if(flow[i] && dep[to] == dep[now]+1){
  51. // from[to]=now;
  52. // nxt[now]=to;
  53. int x=dfs(to,min(fl,flow[i]));
  54. flow[i]-=x;
  55. flow[i^1]+=x;
  56. fl-=x;
  57. f+=x;
  58. if(!fl) break;
  59. }
  60. }
  61. if(!f) dep[now]=-2;
  62. return f;
  63. }
  64. void mxflow(int s,int t){
  65. aim=t;
  66. while(bfs(s,t)){
  67. ans+=dfs(s,1<<30);
  68. }
  69. return;
  70. }
  71. int vis[N];
  72. signed main(){
  73. read(p),read(n);
  74. //一个机器有p个零件
  75. //有n个机器
  76. s=0;
  77. t=2*n+1;
  78. for(int i=1;i<=n;i++){
  79. read(f[i]);
  80. for(int j=1;j<=p;j++) read(ss[i][j]);
  81. for(int j=1;j<=p;j++) read(tt[i][j]);
  82. add(i,i+n,f[i]);
  83. add(i+n,i,0);
  84. }
  85. for(int i=1;i<=n;i++){
  86. int flag=0;
  87. for(int j=1;j<=p;j++){
  88. if(ss[i][j]==1){
  89. flag=1;
  90. break;
  91. }
  92. }
  93. if(!flag){
  94. add(s,i,INF);
  95. add(i,s,0);
  96. }
  97. flag=0;
  98. for(int j=1;j<=p;j++){
  99. if(tt[i][j]==0||tt[i][j]==2){
  100. flag=1;
  101. break;
  102. }
  103. }
  104. if(!flag){
  105. add(i+n,t,INF);
  106. add(t,i+n,0);
  107. }
  108. }
  109. for(int i=1;i<=n;i++) {
  110. for(int j=1;j<=n;j++) {
  111. if(i==j) continue;
  112. int flag=0;
  113. for(int k=1;k<=p;k++) {
  114. if(ss[j][k]==2||tt[i][k]==ss[j][k]) continue;
  115. flag=1;
  116. break;
  117. }
  118. if(!flag){
  119. add(i+n,j,INF);
  120. add(j,i+n,0);
  121. }
  122. }
  123. }
  124. mxflow(s,t);
  125. printf("%lld ",ans);
  126. int sum=0,cnt=0;
  127. int tot=0;
  128. for(int i=n+1;i<t;i++){
  129. for(int j=first[i];j;j=nex[j]){
  130. if(v[j]>0&&v[j]<=n&&ft[j]>flow[j]){
  131. // printf("%lld %lld %lld\n",i-n,v[j],ft[j]-flow[j]);
  132. ++cnt;
  133. }
  134. }
  135. }
  136. printf("%lld\n",cnt);
  137. for(int i=n+1;i<t;i++){
  138. for(int j=first[i];j;j=nex[j]){
  139. if(v[j]>0&&v[j]<=n&&ft[j]>flow[j]){
  140. printf("%lld %lld %lld\n",i-n,v[j],ft[j]-flow[j]);
  141. }
  142. }
  143. }
  144. return 0;
  145. }

「POJ3436」ACM Computer Factory题解的更多相关文章

  1. POJ3436:ACM Computer Factory(最大流)

    ACM Computer Factory Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 9963   Accepted: 3 ...

  2. POJ3436 ACM Computer Factory(最大流/Dinic)题解

    ACM Computer Factory Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 8944   Accepted: 3 ...

  3. POJ3436 ACM Computer Factory —— 最大流

    题目链接:https://vjudge.net/problem/POJ-3436 ACM Computer Factory Time Limit: 1000MS   Memory Limit: 655 ...

  4. POJ3436 ACM Computer Factory 【最大流】

    ACM Computer Factory Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 5412   Accepted: 1 ...

  5. poj-3436.ACM Computer Factory(最大流 + 多源多汇 + 结点容量 + 路径打印 + 流量统计)

    ACM Computer Factory Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 10940   Accepted:  ...

  6. POJ-3436 ACM Computer Factory(网络流EK)

    As you know, all the computers used for ACM contests must be identical, so the participants compete ...

  7. poj3436 ACM Computer Factory, 最大流,输出路径

    POJ 3436 ACM Computer Factory 电脑公司生产电脑有N个机器.每一个机器单位时间产量为Qi. 电脑由P个部件组成,每一个机器工作时仅仅能把有某些部件的半成品电脑(或什么都没有 ...

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

    POJ 3436 ACM Computer Factory (网络流,最大流) Description As you know, all the computers used for ACM cont ...

  9. POJ 3464 ACM Computer Factory

    ACM Computer Factory Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 4829 Accepted: 1641 ...

随机推荐

  1. Web应用漏洞-NGINX各类请求头缺失对应配置

    前言 随着越来越多的网络访问通过WEB界面进行操作,WEB安全已经成为互联网安全的一个热点,基于WEB的攻击广为流行,SQL注入.跨站脚本等WEB应用层漏洞的存在使得网站沦陷.页面篡改.网页挂马等攻击 ...

  2. 快速上手 Linkerd v2 Service Mesh(服务网格)

    在本指南中,我们将引导您了解如何将 Linkerd 安装到您的 Kubernetes 集群中. 然后我们将部署一个示例应用程序来展示 Linkerd 的功能. 安装 Linkerd 很容易.首先,您将 ...

  3. [leetcode] (周赛)868. 二进制间距

    868. 二进制间距 读懂题意就出来了 class Solution { public int binaryGap(int N) { String s = Integer.toBinaryString ...

  4. Redis 内存大小限制+键值淘汰策略配置

    限制最大内存 windows 的 maxmemory-policy 策略可能会少一些 # 指定 Redis 最大内存限制,Redis 在启动时会把数据加载到内存中,达到最大内存后,Redis 会先尝试 ...

  5. Django框架中logging的使用

    Django框架中logging的使用 日志是我们在项目开发中必不可少的一个环节,Python中内置的logging已经足够优秀到可以直接在项目中使用. 本文介绍了如何在DJango项目中配置日志. ...

  6. Python+Selenium学习笔记19 - 自动发送邮件

    发送简单的邮件 用一个QQ邮箱发送到另一个QQ邮件. 首先设置QQ邮箱,邮箱设置 -> 账号 开启SMTP服务,点击开启按钮,按提示进行操作,需要1毛钱的短信费.开启后如下所示 1 # codi ...

  7. 2.5D Visual Sound:CVPR2019论文解析

    2.5D Visual Sound:CVPR2019论文解析 论文链接: http://openaccess.thecvf.com/content_CVPR_2019/papers/Gao_2.5D_ ...

  8. 微调torchvision 0.3的目标检测模型

    微调torchvision 0.3的目标检测模型 本文将微调在 Penn-Fudan 数据库中对行人检测和分割的已预先训练的 Mask R-CNN 模型.它包含170个图像和345个行人实例,说明如何 ...

  9. Maven笔记(更新中)

    Maven 1.学习目标 会使用maven构建项目的命令 会使用maven构建java项目和java web项目 依赖管理--传递依赖 版本冲突处理 在web的单个工程中实现jsp+servlet整合 ...

  10. SSM框架集成各配置文件

    SSM框架集成各配置文件 Spring Spring MVC Mybatis 的整合SpringMVC相当于Spring的一个组件 本来就是一个家族的不存在整合的问题,所以主要就是Spring于Myb ...