摘要: 二分图的最大匹配模板题 1 #include 2 #include 3 #include 4 using namespace std; 5 bool map[105][305],vis[305],flag; 6 int match[305]; 7 int p,n; 8 bool dfs(int... 阅读全文
posted @ 2015-03-21 20:58 Mr.XuJH 阅读(118) 评论(0) 推荐(0) 编辑