2019CCPC秦皇岛赛区(重现赛)AEK 题解
#include<bits/stdc++.h>#define ll long longusing namespace std;const int maxn = 100 * 100 * 4 + 210, inf = 1e9;struct Edge{ int from,to,cap,flow;};struct Dinic{ int n,m,s,t; vector<...