Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix #37: Fix deduplication by tangent #38

Merged
merged 2 commits into from
Sep 13, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions atcoder/mincostflow.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ template <class Cap, class Cost> struct mcf_graph {
return true;
};
Cap flow = 0;
Cost cost = 0, prev_cost = -1;
Cost cost = 0, prev_cost_per_flow = -1;
std::vector<std::pair<Cap, Cost>> result;
result.push_back({flow, cost});
while (flow < flow_limit) {
Expand All @@ -139,11 +139,11 @@ template <class Cap, class Cost> struct mcf_graph {
Cost d = -dual[s];
flow += c;
cost += c * d;
if (prev_cost == d) {
if (prev_cost_per_flow == d) {
result.pop_back();
}
result.push_back({flow, cost});
prev_cost = cost;
prev_cost_per_flow = d;
}
return result;
}
Expand Down
9 changes: 9 additions & 0 deletions test/unittest/mincostflow_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,3 +79,12 @@ TEST(MaxflowTest, SelfLoop) {
mcf_graph<int, int>::edge e = {0, 0, 100, 0, 123};
edge_eq(e, g.get_edge(0));
}

TEST(MincostflowTest, SameCostPaths) {
mcf_graph<int, int> g(3);
ASSERT_EQ(0, g.add_edge(0, 1, 1, 1));
ASSERT_EQ(1, g.add_edge(1, 2, 1, 0));
ASSERT_EQ(2, g.add_edge(0, 2, 2, 1));
auto expected = std::vector<std::pair<int, int>>{{0, 0}, {3, 3}};
ASSERT_EQ(expected, g.slope(0, 2));
}