forked from atcoder/ac-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmincostflow_test.cpp
167 lines (146 loc) · 4.5 KB
/
mincostflow_test.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
#include "atcoder/maxflow"
#include "atcoder/mincostflow"
#include "../utils/random.hpp"
#include <numeric>
#include <tuple>
#include <vector>
#include <gtest/gtest.h>
using namespace atcoder;
using ll = long long;
using ull = unsigned long long;
TEST(MincostflowTest, Zero) {
mcf_graph<int, int> g1;
mcf_graph<int, int> g2(0);
}
template <class edge> void edge_eq(edge expect, edge actual) {
ASSERT_EQ(expect.from, actual.from);
ASSERT_EQ(expect.to, actual.to);
ASSERT_EQ(expect.cap, actual.cap);
ASSERT_EQ(expect.flow, actual.flow);
ASSERT_EQ(expect.cost, actual.cost);
}
TEST(MincostflowTest, Simple) {
mcf_graph<int, int> g(4);
g.add_edge(0, 1, 1, 1);
g.add_edge(0, 2, 1, 1);
g.add_edge(1, 3, 1, 1);
g.add_edge(2, 3, 1, 1);
g.add_edge(1, 2, 1, 1);
auto expect = std::vector<std::pair<int, int>>({{0, 0}, {2, 4}});
ASSERT_EQ(expect, g.slope(0, 3, 10));
mcf_graph<int, int>::edge e;
e = {0, 1, 1, 1, 1};
edge_eq(e, g.get_edge(0));
e = {0, 2, 1, 1, 1};
edge_eq(e, g.get_edge(1));
e = {1, 3, 1, 1, 1};
edge_eq(e, g.get_edge(2));
e = {2, 3, 1, 1, 1};
edge_eq(e, g.get_edge(3));
e = {1, 2, 1, 0, 1};
edge_eq(e, g.get_edge(4));
}
TEST(MincostflowTest, Usage) {
{
mcf_graph<int, int> g(2);
g.add_edge(0, 1, 1, 2);
ASSERT_EQ(std::make_pair(1, 2), g.flow(0, 1));
}
{
mcf_graph<int, int> g(2);
g.add_edge(0, 1, 1, 2);
auto expect = std::vector<std::pair<int, int>>({{0, 0}, {1, 2}});
ASSERT_EQ(expect, g.slope(0, 1));
}
}
TEST(MincostflowTest, Assign) {
mcf_graph<int, int> g;
g = mcf_graph<int, int>(10);
}
TEST(MincostflowTest, OutOfRange) {
mcf_graph<int, int> g(10);
EXPECT_DEATH(g.slope(-1, 3), ".*");
EXPECT_DEATH(g.slope(3, 3), ".*");
}
// https://github.com/atcoder/ac-library/issues/1
TEST(MincostflowTest, SelfLoop) {
mcf_graph<int, int> g(3);
ASSERT_EQ(0, g.add_edge(0, 0, 100, 123));
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));
}
TEST(MincostflowTest, Invalid) {
mcf_graph<int, int> g(2);
// https://github.com/atcoder/ac-library/issues/51
EXPECT_DEATH(g.add_edge(0, 0, -1, 0), ".*");
EXPECT_DEATH(g.add_edge(0, 0, 0, -1), ".*");
}
TEST(MincostflowTest, Stress) {
for (int phase = 0; phase < 1000; phase++) {
int n = randint(2, 20);
int m = randint(1, 100);
int s, t;
std::tie(s, t) = randpair(0, n - 1);
if (randbool()) std::swap(s, t);
mf_graph<int> g_mf(n);
mcf_graph<int, int> g(n);
for (int i = 0; i < m; i++) {
int u = randint(0, n - 1);
int v = randint(0, n - 1);
int cap = randint(0, 10);
int cost = randint(0, 10000);
g.add_edge(u, v, cap, cost);
g_mf.add_edge(u, v, cap);
}
int flow, cost;
std::tie(flow, cost) = g.flow(s, t);
ASSERT_EQ(g_mf.flow(s, t), flow);
int cost2 = 0;
std::vector<int> v_cap(n);
for (auto e : g.edges()) {
v_cap[e.from] -= e.flow;
v_cap[e.to] += e.flow;
cost2 += e.flow * e.cost;
}
ASSERT_EQ(cost, cost2);
for (int i = 0; i < n; i++) {
if (i == s) {
ASSERT_EQ(-flow, v_cap[i]);
} else if (i == t) {
ASSERT_EQ(flow, v_cap[i]);
} else {
ASSERT_EQ(0, v_cap[i]);
}
}
// check: there is no negative-cycle
std::vector<int> dist(n);
while (true) {
bool update = false;
for (auto e : g.edges()) {
if (e.flow < e.cap) {
int ndist = dist[e.from] + e.cost;
if (ndist < dist[e.to]) {
update = true;
dist[e.to] = ndist;
}
}
if (e.flow) {
int ndist = dist[e.to] - e.cost;
if (ndist < dist[e.from]) {
update = true;
dist[e.from] = ndist;
}
}
}
if (!update) break;
}
}
}