poj 2195 带权重的二分图最大匹配问题

看了很长时间二分图的匹配,没怎么理解,带权重的就更不用说了。

但是既然看了这题,先给刷过吧。

粘的别人的模板,过了,心里很不爽,有空一定要好好读读《算法导论》的这个章节。

#include #include #include #define MAXN 110 #define inf 1000000000 #define _clr(x) memset(x,0xff,sizeof(int)*n) //please declare parameters here int N,M; int mat[MAXN][MAXN]; int House[MAXN][2],Man[MAXN][2]; int H_num,M_num,Max_num; int match1[MAXN],match2[MAXN]; //please declare functions here. int fee(int i,int j) { return abs(House[i][0]-Man[j][0])+abs(House[i][1]-Man[j][1]); } void Input() //input data and construct the graph { int i,j; char ch; H_num=0; M_num=0; for(i=0;il1[i]?mat[i][j]:l1[i]; for (i=0;i=0;j=p) match2[j]=k=t[j],p=match1[k],match1[k]=j; } if (match1[i]<0){ for (i--,p=inf,k=0;k<=q;k++) for (j=0;j


你可能感兴趣的:(poj 2195 带权重的二分图最大匹配问题)