摘要: 最大流(dinic算法)模板 #include<bits/stdc++.h> using namespace std; typedef long long ll; const ll inf=1e18; struct edge{ll v,cap,flow;}; ll n,m,s,t; vector<l 阅读全文
posted @ 2023-11-15 13:04 Alric 阅读(12) 评论(0) 推荐(0) 编辑