博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
二分图匹配(Luogu3386)
阅读量:5214 次
发布时间:2019-06-14

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

  • 一个看起来舒服的写法:
#include
#include
using namespace std;int n,m,edge,head[1005],vis[1005],match[1005],ans,cnt;struct node{ int v,next;}e[1000005];inline void add(int u,int v){ e[++cnt].v=v; e[cnt].next=head[u]; head[u]=cnt;}inline bool dfs(int u){ for(int i=head[u];i!=-1;i=e[i].next){ if(!vis[e[i].v]){ vis[e[i].v]=1; if(match[e[i].v]==-1||dfs(match[e[i].v])){ match[e[i].v]=u; return 1; } } } return 0;}int main(){ memset(head,-1,sizeof(head)); memset(match,-1,sizeof(match)); scanf("%d%d%d",&n,&m,&edge); for(int i=1;i<=edge;i++){ int u,v; scanf("%d%d",&u,&v); if(u>n||v>m)continue; add(u,v); } for(int i=1;i<=n;i++){ memset(vis,0,sizeof(vis)); ans+=dfs(i); } printf("%d\n",ans);}

转载于:https://www.cnblogs.com/Y15BeTa/p/11235921.html

你可能感兴趣的文章
程序员常用的六大技术博客类
查看>>
solr 搭建
查看>>
ArcGIS API 之 Graphic & Geometry
查看>>
Cryptography I 学习笔记 --- 零碎
查看>>
Jzoj1951 布娃娃
查看>>
Jzoj4747 被粉碎的线段树
查看>>
day02-格式化输出
查看>>
面向对象(一)
查看>>
登陆框中用到的验证码
查看>>
Python进程学习笔记-multiprocessing模块
查看>>
课堂练习----一个整数数组中最大子数组的和(1)
查看>>
Pushing Boxes POJ - 1475 (嵌套bfs)
查看>>
[Spring boot] Integrating with h2 database
查看>>
[RxJS] Filtering operators: takeUntil, takeWhile
查看>>
[Angular-Scaled web] 3. Basic State with ui-router
查看>>
sql必知必会(第四版) 学习笔记二 视图
查看>>
javaweb----part5 jsp
查看>>
jmeter的csv data set confg实现指定行读取
查看>>
P1832 A+B Problem(再升级)
查看>>
1191 数轴染色
查看>>