[题目链接] https://www.lydsy.com/JudgeOnline/problem.php?id=1001 [算法] 最小割 [代码] #include<bits/stdc++.h> using namespace std; #define MAXN 1010 const long long inf = 1e18; struct edge { int to; long long w; int nxt; } e[MAXN * MAXN * ]; int i,j,n,m,tot,S,…