题目链接 最大流裸题,没什么好说吧,恰好点数多,考验网络流的效率,正好练\(Dinic\). #include <cstdio> #include <queue> #include <cstring> #define INF 2147483647 using namespace std; const int MAXN = 1000010; const int MAXM = 8000010; inline int read(){ int s = 0, w = 1; cha…
题目大意:给你一个n*m的网格图,有三种边,横的,纵的和斜的,要你求出它的最小割 题解:网络流 卡点:1.无向图,反向弧容量应和正向弧相同 C++ Code: #include<cstdio> #include<cstring> #include<cctype> #define maxn 1010*1010 using namespace std; const int inf=0x3f3f3f3f; int n,m,a,u,v; int d[maxn]; int q[m…