| 51 | queue<int> q; |
| 52 | |
| 53 | Dinic(int n, int s, int t) : n(n), s(s), t(t) { |
| 54 | adj.resize(n); |
| 55 | level.resize(n); |
| 56 | ptr.resize(n); |
| 57 | } |
| 58 | |
| 59 | void add_edge(int v, int u, long long cap) { |
| 60 | edges.emplace_back(v, u, cap); |
nothing calls this directly
no outgoing calls
no test coverage detected