摘要: 最大流 const int MAXN = 10010, MAXM = 20010, INF = 1e9; struct MaxFlow { int S, T, head[MAXN], cur[MAXN], dis[MAXN], cnt = 1; bool vis[MAXN]; struct edge 阅读全文
posted @ 2023-03-15 15:55 曹轩鸣 阅读(56) 评论(0) 推荐(0) 编辑