摘要: 最大流 最大流模板-Dinic #include <bits/stdc++.h> using namespace std; const int N = 10010,M = 2e5+10,INF = 0x3f3f3f3f; int h[N],e[M],ne[M],f[M],idx; int q[N], 阅读全文
posted @ 2024-02-07 23:37 Howardlhhhr 阅读(24) 评论(0) 推荐(0)