[链接] 我是链接,点我呀:) [题意] 求最小割中最少的边数. [题解] 模板题 [代码] const int INF = 1e9; const int maxn = 1e3 + 7; const int maxv = 2e4 + 5; int head[maxv], cur[maxv], d[maxv], s, t, k, k1, sum, book[maxn]; int n, m; void init() { k = 0; memset(head, -1, sizeof(head)); }…