摘要: 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=3360思路:最小覆盖==最大匹配。 1 #include<iostream> 2 #include<cstdio> 3 #include<cstring> 4 #include<algorithm> 5 #include<vector> 6 using namespace std; 7 #define MAXN 3333 8 vector<int>vet[MAXN]; 9 int map[MAXN][MAXN];10 int l 阅读全文
posted @ 2013-06-16 12:22 ihge2k 阅读(296) 评论(0) 推荐(0) 编辑