摘要: 最大流 const int N=5e2+10,M=26,INF=1e9; namespace Flow{ const int V=N+M,E=N*M*2+N*2+M*2+V*2; int s,t,kk,head[V],d[V],cur[V]; struct edges{ int to,c,nex; 阅读全文
posted @ 2023-10-09 16:08 A_zjzj 阅读(11) 评论(0) 推荐(0) 编辑