摘要: //Dinic struct Edge{ int from,to,cap,flow; Edge(){ } Edge(int a,int b,int c,int d){ from=a; to=b; cap=c; flow=d; } }edges[maxm*2]; int n,m... 阅读全文
posted @ 2018-09-21 21:39 wa007 阅读(161) 评论(0) 推荐(0) 编辑