| 1 | #define MAXV 2000 |
| 2 | int d[MAXV], p[MAXV], pot[MAXV]; |
| 3 | struct cmp { bool operator()(int i, int j) const { |
| 4 | return d[i] == d[j] ? i < j : d[i] < d[j]; } }; |
| 5 | struct flow_network { |
| 6 | struct edge { int v, nxt, cap, cost; |
| 7 | edge(int _v, int _cap, int _cost, int _nxt) |
nothing calls this directly
no outgoing calls
no test coverage detected