洛谷 P3386 【模板】二分图匹配

[TOC]

###题目

###思路
板子能有啥思路
###Code

复制代码
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
#include<iostream> #include<cstdio> #include<cstring> #include<string> #include<algorithm> #define MAXN 1001 using namespace std; int n,m,e; int qwq[MAXN][MAXN],match[MAXN]; bool vis[MAXN]; inline int read(){ int x=0;bool f=0;char c=getchar(); while(c<'0'||c>'9'){if(c=='-')f=!f;c=getchar();} while(c>='0'&&c<='9'){x=x*10+c-'0';c=getchar();} return f?-x:x; } bool go(int x){ for(int i=1;i<=m;++i){ if(!vis[i]&&qwq[x][i]){ vis[i]=1; if(!match[i]||go(match[i])){ match[i]=x; return 1; } } } return 0; } int main(){ n=read(),m=read(),e=read(); int u,v; for(int i=1;i<=e;++i){ u=read(),v=read(); if(u>n||v>m) continue; qwq[u][v]=1; } int ans=0; for(int i=1;i<=n;++i){ memset(vis,0,sizeof(vis)); if(go(i)) ans++; } printf("%d\n",ans); return 0; }
posted @   yu__xuan  阅读(187)  评论(0编辑  收藏  举报
编辑推荐:
· 智能桌面机器人:用.NET IoT库控制舵机并多方法播放表情
· Linux glibc自带哈希表的用例及性能测试
· 深入理解 Mybatis 分库分表执行原理
· 如何打造一个高并发系统?
· .NET Core GC压缩(compact_phase)底层原理浅谈
阅读排行:
· 手把手教你在本地部署DeepSeek R1,搭建web-ui ,建议收藏!
· 新年开篇:在本地部署DeepSeek大模型实现联网增强的AI应用
· 程序员常用高效实用工具推荐,办公效率提升利器!
· Janus Pro:DeepSeek 开源革新,多模态 AI 的未来
· 【译】WinForms:分析一下(我用 Visual Basic 写的)
点击右上角即可分享
微信分享提示
评论
收藏
关注
推荐
深色
回顶
展开