摘要:
求面积并 #include<bits/stdc++.h> using namespace std; typedef long long LL; const int N=1e6+10; int n; int X[N*2]; struct segment { int l,r,h,val; }seg[N* 阅读全文
摘要:
流网络: G=(V,E)是一个有向图,图中每条边(u,v)有一个非负的容量值c(u,v)>=0, 相关定理及证明论文参考 dicnic(n^2m) #include<bits/stdc++.h> using namespace std; const int N=1e4+10; const int M 阅读全文