摘要:
hdu 3360 National Treasures http://acm.hdu.edu.cn/showproblem.php?pid=3360 2013-2-3最少的保安数=n*m-最多的物品数最多的物品数就是最大独立集 物品的奇偶不同才可能有边 是二分图View Code 1 #include <cstdio> 2 #include <cstring> 3 #include <vector> 4 using namespace std; 5 6 const int N=2600; 7 struct BGMatch{ 8 int n; 9 vector
阅读全文