Loading [MathJax]/extensions/TeX/newcommand.js
\newcommand{\ord}[1]{\mathcal{O}\left(#1\right)} \newcommand{\abs}[1]{\lvert #1 \rvert} \newcommand{\floor}[1]{\lfloor #1 \rfloor} \newcommand{\ceil}[1]{\lceil #1 \rceil} \newcommand{\opord}{\operatorname{\mathcal{O}}} \newcommand{\argmax}{\operatorname{arg\,max}} \newcommand{\str}[1]{\texttt{"#1"}}

2015年10月14日 星期三

[ Augmenting Path Algorithm ] 二分圖匹配增廣路徑演算法

就是一直找增廣路徑,找到不能再找就是最大匹配惹
複雜度\ord{n1*(m+n2+n1)},用dinic會比較快但是code比較長
模板:
#define MAXN1 505
#define MAXN2 505
int n1,n2;/*n1個點連向n2個點*/
int match[MAXN2];/*每個屬於n2的點匹配了哪個點*/
vector<int > g[MAXN1];/*圖*/
bool vis[MAXN2];/*是否走訪過*/
bool dfs(int u){
for(size_t i=0;i<g[u].size();++i){
int v=g[u][i];
if(vis[v])continue;
vis[v]=1;
if(match[v]==-1||dfs(match[v])){
match[v]=u;
return 1;
}
}
return 0;
}
inline int max_match(){
int ans=0;
memset(match,-1,sizeof(int)*n2);
for(int i=0;i<n1;++i){
memset(vis,0,sizeof(bool)*n2);
if(dfs(i))++ans;
}
return ans;
}

2 則留言:

  1. 請問…模版的用途是什麼?
    是用在能力競賽之類的地方嗎?

    回覆刪除