摘要:
最大流 模板: P3376 【模板】网络最大流 #include<bits/stdc++.h> #define int long long using namespace std; const int inf=1e9; int n,m,s,t; int u,v,w; int h[2000004]; 阅读全文
摘要:
这个算法本身就不多讲了,感觉很暴力。 Luogu P5928 #include<bits/stdc++.h> #define int long long using namespace std; const double eps=1e-3,delta=0.999; const int N=103; 阅读全文