Qiuqiqiu  
不管道路多么崎岖坎坷,我永远不停下追逐梦想的脚步!

2013年2月3日

摘要: 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 阅读全文
posted @ 2013-02-03 13:21 Qiuqiqiu 阅读(144) 评论(0) 推荐(0) 编辑