minux_sufe
minux_sufe
全部文章
题解
算法(2)
归档
标签
去牛客网
登录
/
注册
Code Rush
0x00
全部文章
/ 题解
(共3篇)
Floyd求传递闭包后求最大匹配
#include <bits/stdc++.h> using namespace std; const int N=205; const int M=30005; int n, m; bool g[N][N], vis[N]; int match[N]; bool find(int...
二分图的最大匹配
Floyd
传递闭包
hungary
2020-07-06
0
439
二分图最大匹配hungary
#include <bits/stdc++.h> using namespace std; typedef pair<int, int> PII; #define fi first #define se second const int N=105; int n, m, ...
二分图的最大匹配
hungary
2020-07-06
1
477
hungary
#include <bits/stdc++.h> using namespace std; typedef pair<int, int> PII; #define fi first #define se second const int N=105; int n, m; ...
二分图的最大匹配
hungary
2020-07-04
0
478