题意 求最小割 题解 Dinic+当前弧优化 #include <iostream> #include <cstring> #include <queue> using namespace std; int n,m,S,T,cnt=-1,depth[6000001],head[6000001]; int cur[6000001]; struct edge{ int nxt=-1,to,w; }flow[6000001]; void add(int x,int y,int z){ cnt++; flow[cnt].to=y; f...