摘要: 二分图最大匹配模版题。 1 /* 2 ID: cuizhe 3 LANG: C++ 4 TASK: stall4 5 */ 6 #include <cstdio> 7 #include <cstring> 8 #include <cmath> 9 #include <string>10 #include <ctime>11 using namespace std;12 int p[201][201],used[201],linker[201];13 int n,m;14 int dfs(int x)15 {16 int i;17 fo 阅读全文
posted @ 2013-03-04 20:39 Naix_x 阅读(149) 评论(0) 推荐(0) 编辑