博客
关于我
LibreOJ #6000. 「网络流 24 题」搭配飞行员
阅读量:798 次
发布时间:2023-01-31

本文共 3788 字,大约阅读时间需要 12 分钟。

二次联通门 : 

 

 

 

/*    LibreOJ #6000. 「网络流 24 题」搭配飞行员        二分图最大匹配    Dinic最大流 + 当前弧优化     */#include 
#include
#include
#define Max 10000#define INF 1e5int read (int &now){ now = 0; register char word = getchar (); while (word < '0' || word > '9') word = getchar (); while (word >= '0' && word <= '9') { now = now * 10 + word - '0'; word = getchar (); } if (now >= 0) return 1;}inline int min (int a, int b){ return a < b ? a : b;}class Net_Flow_Type{ private : int __to[Max << 2], __next[Max << 2]; int __flow[Max << 2]; int edge_list[Max]; int Edge_Count; int deep[Max], __tech_[Max]; int T; int Answer; public : Net_Flow_Type () { Edge_Count = 1; } inline void Insert_edge (int from, int to) { Edge_Count ++; __to[Edge_Count] = to; __next[Edge_Count] = edge_list[from]; edge_list[from] = Edge_Count; Edge_Count ++; __to[Edge_Count] = from; __next[Edge_Count] = edge_list[to]; edge_list[to] = Edge_Count; __flow[Edge_Count - 1] = 1; __flow[Edge_Count] = 0; } bool Bfs (int Start, int End) { std :: queue
Queue; Queue.push (Start); memset (deep, -1, sizeof deep); int now; for (deep[Start] = 0; !Queue.empty (); Queue.pop ()) { now = Queue.front (); for (int i = edge_list[now]; i; i = __next[i]) if (__flow[i] && deep[__to[i]] == -1) { deep[__to[i]] = deep[now] + 1; if (__to[i] == End) return true; Queue.push (__to[i]); } } return deep[End] != -1; } int Flowing (int now, int flow) { if (now == T || flow <= 0) return flow; int res = 0, pos = 0; for (int i = __tech_[now]; i; i = __next[i]) { if (deep[__to[i]] != deep[now] + 1 || __flow[i] <= 0) continue; res = Flowing (__to[i], min (flow, __flow[i])); if (res > 0) { flow -= res; pos += res; __flow[i] -= res; __flow[i ^ 1] += res; if (__flow[i]) __tech_[now] = i; if (flow == 0) return pos; } } return pos; } int Dinic (int Start, int End) { for (T = End; Bfs (Start, End); ) { memcpy (__tech_, edge_list, sizeof edge_list); Answer += Flowing (Start, INF); } return Answer; } };int N, M;Net_Flow_Type Make;int main (int argc, char *argv[]){ read (N); read (M); int S = N + 1, T = N + 2; for (int i = 1; i <= M; i ++) Make.Insert_edge (S, i); for (int i = M + 1; i <= N; i ++) Make.Insert_edge (i, T); for (int x, y; scanf ("%d %d", &x, &y) == 2; Make.Insert_edge (x, y)); printf ("%d", Make.Dinic (S, T)); return 0;}

 

转载于:https://www.cnblogs.com/ZlycerQan/p/7076874.html

你可能感兴趣的文章
Vue过滤器_使用过滤器进行数据格式化操作---vue工作笔记0015
查看>>
Ncast盈可视 高清智能录播系统 IPSetup.php信息泄露+RCE漏洞复现(CVE-2024-0305)
查看>>
NCNN中的模型量化解决方案:源码阅读和原理解析
查看>>
NCNN源码学习(1):Mat详解
查看>>
nc命令详解
查看>>
NC综合漏洞利用工具
查看>>
ndarray 比 recarray 访问快吗?
查看>>
ndk-cmake
查看>>
NdkBootPicker 使用与安装指南
查看>>
ndk特定版本下载
查看>>
NDK编译错误expected specifier-qualifier-list before...
查看>>
Neat Stuff to Do in List Controls Using Custom Draw
查看>>
Necurs僵尸网络攻击美国金融机构 利用Trickbot银行木马窃取账户信息和欺诈
查看>>
Needle in a haystack: efficient storage of billions of photos 【转】
查看>>
NeHe OpenGL教程 07 纹理过滤、应用光照
查看>>
NeHe OpenGL教程 第四十四课:3D光晕
查看>>
Neighbor2Neighbor 开源项目教程
查看>>
neo4j图形数据库Java应用
查看>>
Neo4j图数据库_web页面关闭登录实现免登陆访问_常用的cypher语句_删除_查询_创建关系图谱---Neo4j图数据库工作笔记0013
查看>>
Neo4j图数据库的介绍_图数据库结构_节点_关系_属性_数据---Neo4j图数据库工作笔记0001
查看>>