We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f93a3b5 commit 6c48f27Copy full SHA for 6c48f27
atcoder/mincostflow.hpp
@@ -44,7 +44,7 @@ template <class Cap, class Cost> struct mcf_graph {
44
return flow(s, t, std::numeric_limits<Cap>::max());
45
}
46
std::pair<Cap, Cost> flow(int s, int t, Cap flow_limit) {
47
- return slope(s, t, flow_limit).back();
+ return slope(s, t, flow_limit).back();
48
49
std::vector<std::pair<Cap, Cost>> slope(int s, int t) {
50
return slope(s, t, std::numeric_limits<Cap>::max());
0 commit comments