摘要: "P3381 【模板】最小费用最大流" cpp include include include include include using namespace std; struct node { int point; int value; int flow; int nxt; }; node li 阅读全文
posted @ 2018-05-14 20:12 Lance1ot 阅读(125) 评论(0) 推荐(0) 编辑
摘要: "题面带解释" hihoCoder感觉很好。 网络流的精华就是建图 cpp include include include include include using namespace std; struct node { int point; int weight; int nxt; }; no 阅读全文
posted @ 2018-05-14 19:04 Lance1ot 阅读(135) 评论(0) 推荐(0) 编辑