二分最大匹配总结

2024-09-09 08:32
文章标签 总结 二分 最大 匹配

本文主要是介绍二分最大匹配总结,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

HDU 2444  黑白染色 ,二分图判定

const int maxn = 208 ;
vector<int> g[maxn] ;
int  n  ;
bool vis[maxn] ;
int  match[maxn] ;;
int  color[maxn] ;
int  setcolor(int u , int c){color[u] = c ;for(vector<int>::iterator it = g[u].begin() ; it != g[u].end() ; it++){if(color[*it] == -1) {if(! setcolor(*it  , c^1)) return 0 ;}else if(color[*it] == color[u]) return 0 ;}return 1 ;
}int  judge(){for(int i = 1 ; i <= n ; i++){if(color[i] == -1){if(! setcolor(i , 0))  return 0 ;}}return 1 ;
}int  dfs(int u){for(vector<int>::iterator it = g[u].begin() ; it != g[u].end() ; it++){if(vis[*it]) continue  ;vis[*it]  = 1 ;if(match[*it] == -1 || dfs(match[*it])){match[*it] = u  ;return 1 ;}}return 0 ;
}int  maxmatch(){int ans = 0  , u ;memset(match , -1 , sizeof(match)) ;for(u = 1 ; u <= n ; u++){memset(vis , 0 , sizeof(vis)) ;if(dfs(u)) ans++ ;}return ans ;
}int  main(){int m , i , j , u , v  ;while(cin>>n>>m){for(i = 1 ; i <= n ; i++) g[i].clear() ;for(i = 1 ; i <= m ; i++){scanf("%d%d" ,&u,&v) ;g[u].push_back(v) ;g[v].push_back(u) ;}for(i = 1 ; i <= n ; i++) color[i] = -1 ;if(judge()) printf("%d\n" , maxmatch() >> 1) ;else        puts("No") ;}return 0 ;
}


HDU 4185     在一个N*N的矩阵里寻找最多有多少个##”(横着竖着都行)

很典型的二分匹配问题,将矩阵中的点分成俩种,下标i+j为奇数和偶数俩种,即把矩阵当成一个黑白棋盘,那么,一个木板只能覆盖一个黑色和一个白色格子,将黑色格子(并且是‘#’的格子)跟相邻的白色(并且是‘#’)的格子连一条边,则变成了一个求最大匹配的问题了

const int maxn = 601*601*2 ;
int n  , m ;
vector<int> g[maxn]  ;
int   match[maxn] ;
bool  vis[maxn] ;int   dfs(int u){for(vector<int>::iterator it = g[u].begin() ; it != g[u].end() ; it++){if(vis[*it]) continue ;vis[*it] = 1 ;if(match[*it] == -1 || dfs(match[*it])){match[*it] = u  ;return 1 ;}}return 0 ;
}int  maxmatch(){int ans = 0 , u  ;memset(match , -1 , (m+1)*sizeof(int)) ;for(u = 1 ; u <= n ; u++){memset(vis , 0 , (m+1)*sizeof(bool)) ;if(dfs(u)) ans++ ;}return ans ;
}char  str[608][608] ;
int   N ;
map<int ,int> A  , B ;
int  d[4][2] = {{-1,0},{1,0},{0,-1},{0,1}} ;inline int can(int x , int y){return 1 <= x && x<= N && 1 <= y && y <= N && str[x][y] == '#' ;
}int    code(int x , int y){return (x-1)*N + y  ;
}int main(){int t , i ,  j , u , v , indxA , indxB ,k, x , y  , T = 1 ;cin>>t ;while(t--){scanf("%d" ,&N)  ;for(i = 1 ; i <= N ; i++) scanf("%s" ,str[i]+1) ;A.clear() , B.clear() ;indxA = indxB = 0 ;for(i = 1 ; i <= N ; i++){for(j = 1 ; j <= N ; j++){if(((i+j)&1) && str[i][j] == '#'){for(k = 0 ; k < 4 ; k++){x = i + d[k][0] ; y = j + d[k][1] ;if(can(x,y)){u = code(i , j) ;v = code(x , y) ;if(A.find(u) == A.end()) A[u] = ++indxA ;if(B.find(v) == B.end()) B[v] = ++indxB ;g[A[u]].push_back(B[v]) ;}}}}}n = indxA ;m = indxB ;printf("Case %d: %d\n" , T++ , maxmatch() ) ;for(i = 1 ; i <= n ; i++) g[i].clear() ;}return 0 ;
}





这篇关于二分最大匹配总结的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1150653

相关文章

HarmonyOS学习(七)——UI(五)常用布局总结

自适应布局 1.1、线性布局(LinearLayout) 通过线性容器Row和Column实现线性布局。Column容器内的子组件按照垂直方向排列,Row组件中的子组件按照水平方向排列。 属性说明space通过space参数设置主轴上子组件的间距,达到各子组件在排列上的等间距效果alignItems设置子组件在交叉轴上的对齐方式,且在各类尺寸屏幕上表现一致,其中交叉轴为垂直时,取值为Vert

学习hash总结

2014/1/29/   最近刚开始学hash,名字很陌生,但是hash的思想却很熟悉,以前早就做过此类的题,但是不知道这就是hash思想而已,说白了hash就是一个映射,往往灵活利用数组的下标来实现算法,hash的作用:1、判重;2、统计次数;

hdu2241(二分+合并数组)

题意:判断是否存在a+b+c = x,a,b,c分别属于集合A,B,C 如果用暴力会超时,所以这里用到了数组合并,将b,c数组合并成d,d数组存的是b,c数组元素的和,然后对d数组进行二分就可以了 代码如下(附注释): #include<iostream>#include<algorithm>#include<cstring>#include<stack>#include<que

hdu2289(简单二分)

虽说是简单二分,但是我还是wa死了  题意:已知圆台的体积,求高度 首先要知道圆台体积怎么求:设上下底的半径分别为r1,r2,高为h,V = PI*(r1*r1+r1*r2+r2*r2)*h/3 然后以h进行二分 代码如下: #include<iostream>#include<algorithm>#include<cstring>#include<stack>#includ

【Prometheus】PromQL向量匹配实现不同标签的向量数据进行运算

✨✨ 欢迎大家来到景天科技苑✨✨ 🎈🎈 养成好习惯,先赞后看哦~🎈🎈 🏆 作者简介:景天科技苑 🏆《头衔》:大厂架构师,华为云开发者社区专家博主,阿里云开发者社区专家博主,CSDN全栈领域优质创作者,掘金优秀博主,51CTO博客专家等。 🏆《博客》:Python全栈,前后端开发,小程序开发,人工智能,js逆向,App逆向,网络系统安全,数据分析,Django,fastapi

git使用的说明总结

Git使用说明 下载安装(下载地址) macOS: Git - Downloading macOS Windows: Git - Downloading Windows Linux/Unix: Git (git-scm.com) 创建新仓库 本地创建新仓库:创建新文件夹,进入文件夹目录,执行指令 git init ,用以创建新的git 克隆仓库 执行指令用以创建一个本地仓库的

poj 3723 kruscal,反边取最大生成树。

题意: 需要征募女兵N人,男兵M人。 每征募一个人需要花费10000美元,但是如果已经招募的人中有一些关系亲密的人,那么可以少花一些钱。 给出若干的男女之间的1~9999之间的亲密关系度,征募某个人的费用是10000 - (已经征募的人中和自己的亲密度的最大值)。 要求通过适当的招募顺序使得征募所有人的费用最小。 解析: 先设想无向图,在征募某个人a时,如果使用了a和b之间的关系

poj 2976 分数规划二分贪心(部分对总体的贡献度) poj 3111

poj 2976: 题意: 在n场考试中,每场考试共有b题,答对的题目有a题。 允许去掉k场考试,求能达到的最高正确率是多少。 解析: 假设已知准确率为x,则每场考试对于准确率的贡献值为: a - b * x,将贡献值大的排序排在前面舍弃掉后k个。 然后二分x就行了。 代码: #include <iostream>#include <cstdio>#incl

poj 3104 二分答案

题意: n件湿度为num的衣服,每秒钟自己可以蒸发掉1个湿度。 然而如果使用了暖炉,每秒可以烧掉k个湿度,但不计算蒸发了。 现在问这么多的衣服,怎么烧事件最短。 解析: 二分答案咯。 代码: #include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#include <c

poj 3258 二分最小值最大

题意: 有一些石头排成一条线,第一个和最后一个不能去掉。 其余的共可以去掉m块,要使去掉后石头间距的最小值最大。 解析: 二分石头,最小值最大。 代码: #include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#include <cstring>#include <c