摘要: P3254 圆桌问题 1 #include <bits/stdc++.h> 2 using namespace std; 3 const int maxn = 1005, inf = 0x3f3f3f; 4 struct Edge { 5 int from, to, cap, flow; 6 }; 阅读全文
posted @ 2019-11-05 22:10 麻辣猪仔 阅读(133) 评论(0) 推荐(0) 编辑
摘要: P4014 分配问题 1 #include <bits/stdc++.h> 2 using namespace std; 3 const int maxn = 305, inf = 0x3f3f3f3f; 4 struct Edge { 5 int from, to, cap, flow, cost 阅读全文
posted @ 2019-11-05 20:54 麻辣猪仔 阅读(178) 评论(0) 推荐(0) 编辑
摘要: P4016 负载平衡问题 1 #include <bits/stdc++.h> 2 using namespace std; 3 const int maxn = 1005, inf = 0x3f3f3f3f; 4 struct Edge { 5 int from, to, cap, flow, c 阅读全文
posted @ 2019-11-05 20:41 麻辣猪仔 阅读(143) 评论(0) 推荐(0) 编辑
摘要: P1251 餐巾计划问题 1 #include <bits/stdc++.h> 2 using namespace std; 3 typedef long long ll; 4 const int maxn = 5005, inf = 0x3f3f3f3f; 5 struct Edge { 6 in 阅读全文
posted @ 2019-11-05 19:05 麻辣猪仔 阅读(103) 评论(0) 推荐(0) 编辑
摘要: P2756 飞行员配对方案问题 1 #include <bits/stdc++.h> 2 using namespace std; 3 const int maxn = 10005, inf = 0x3f3f3f; 4 struct Edge { 5 int from, to, cap, flow; 阅读全文
posted @ 2019-11-05 13:43 麻辣猪仔 阅读(132) 评论(0) 推荐(0) 编辑