摘要: 注意题目中 边的容量 2 #include 3 #include 4 #include 5 6 using namespace std; 7 8 const int maxn = 110; 9 const int maxm = 25000; 10 const int inf = 0x3f3f3f3f; 11 const int ww[5] = {1, 3, 5, 7, 9}; 12 13 struct MCMF 14 { 15 struct Edge 16 { 17 int v, c, w, next; 18 }p[maxm... 阅读全文
posted @ 2013-08-17 09:24 Missa 阅读(287) 评论(0) 推荐(0) 编辑