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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
|
#include <iostream>
#include <map>
#include <queue>
#include <set>
#include <sstream>
#include <string>
#include <vector>
using namespace std;
struct edge {
int id; /* connected node */
double weight;
};
struct node {
vector<edge> neighbors;
};
bool is_done(map<int, node> graph, int s, int t)
{
return graph[s].neighbors.size() == 1 &&
graph[s].neighbors[0].id == t &&
graph[t].neighbors.size() == 1 &&
graph[t].neighbors[0].id == s;
}
bool is_ynode(node &n)
{
return n.neighbors.size() == 3 &&
n.neighbors[0].id != n.neighbors[1].id &&
n.neighbors[1].id != n.neighbors[2].id &&
n.neighbors[0].id != n.neighbors[2].id;
}
double combine_s(double a, double b)
{
/* change for capacitance */
return a + b;
}
double combine_p(double a, double b)
{
return 1 / ( 1 / a + 1 / b );
}
void dump_graph(map<int, node> graph)
{
for(map<int, node>::iterator it = graph.begin(); it != graph.end(); it++)
{
cerr << "Node " << it->first << ": ";
struct node &e = it->second;
for(vector<edge>::iterator j = e.neighbors.begin(); j != e.neighbors.end(); j++)
cerr << j->id << " ";
cerr << endl;
}
}
void dump_dot(map<int, node> graph)
{
cout << "digraph a {" << endl;
for(map<int, node>::iterator it = graph.begin(); it != graph.end(); it++)
{
//cerr << "Node " << it->first << ": ";
struct node &e = it->second;
for(vector<edge>::iterator j = e.neighbors.begin(); j != e.neighbors.end(); j++)
{
cout << it->first << " -> " << j->id << " [label=\"" << j->weight << "\"];" << endl;
}
//cerr << endl;
}
cout << "}" << endl;
}
vector<edge>::iterator find_edge(node &n, int id)
{
for(vector<edge>::iterator it = n.neighbors.begin(); it != n.neighbors.end(); it++)
if(it->id == id)
return it;
return n.neighbors.end();
}
double combine_ydelta(double w1, double w2, double w3, double opp)
{
double p = w1 * w2 + w1 * w3 + w2 * w3;
return p / opp;
}
void insert_edge(map<int, node> &graph, int id_a, int id_b, double weight)
{
cerr << "Inserting edge " << id_a << "-" << id_b << endl;
node &a = graph[id_a], &b = graph[id_b];
edge ab, ba;
ab.id = id_b;
ab.weight = weight;
ba.id = id_a;
ba.weight = weight;
a.neighbors.push_back(ab);
b.neighbors.push_back(ba);
}
void do_ydelta(map<int, node> &graph, int node_id)
{
/* assumes ynode */
node &n = graph[node_id];
double w1 = n.neighbors[0].weight,
w2 = n.neighbors[1].weight,
w3 = n.neighbors[2].weight;
double wa = combine_ydelta(w1, w2, w3, w1);
double wb = combine_ydelta(w1, w2, w3, w2);
double wc = combine_ydelta(w1, w2, w3, w3);
/* add delta edges */
insert_edge(graph, n.neighbors[1].id, n.neighbors[2].id, wa);
insert_edge(graph, n.neighbors[0].id, n.neighbors[2].id, wb);
insert_edge(graph, n.neighbors[0].id, n.neighbors[1].id, wc);
/* delete Y edges */
for(int i = 0; i < 3; ++i)
{
node &neighbor = graph[n.neighbors[i].id];
neighbor.neighbors.erase(find_edge(neighbor, node_id));
}
n.neighbors.clear();
}
void do_p_transforms(map<int, node> &graph, int node_id, int other_node = -1)
{
node &a = graph[node_id];
/* perform P transform: O(n^2)? */
for(vector<edge>::iterator i = a.neighbors.begin(); i < a.neighbors.end(); i++)
{
for(vector<edge>::iterator j = a.neighbors.begin(); j < a.neighbors.end(); j++)
{
if(i == j)
continue;
if(i->id == j->id &&
(other_node < 0 || other_node == i->id))
{
cerr << "Performing P-transform on duplicate " << node_id << "-" << i->id << " edges." << endl;
/* remove edge k */
double new_weight = combine_p(i->weight, j->weight);
i->weight = new_weight;
/* will be incremented */
j = a.neighbors.erase(j) - 1;
/* recurse to handle the opposite direction */
do_p_transforms(graph, i->id, node_id);
dump_dot(graph);
}
}
}
}
void simp_iter(map<int,node> &graph, int s, int t, bool ydelta)
{
/* breadth-first search */
set<int> visited;
set<int> open;
open.insert(s);
while(open.size())
{
for(set<int>::iterator i = open.begin(); i != open.end();)
{
int id_a = *i;
node &a = graph[id_a];
cerr << "Visiting node " << id_a << endl;
vector<edge> &neighbors = a.neighbors;
/* First remove duplicate edges with the P transform */
do_p_transforms(graph, id_a);
/* Loop over neighbors */
for(vector<edge>::iterator j = neighbors.begin(); j < neighbors.end(); j++)
{
edge &ed_ab = *j;
int id_b = ed_ab.id;
/* get the connected node */
node &b = graph[ed_ab.id];
cerr << "Connected node " << ed_ab.id << " has " << b.neighbors.size() << " emanating edges." << endl;
/* perform S transform */
if(id_b != s && id_b != t &&
b.neighbors.size() == 2 &&
b.neighbors[0].id != b.neighbors[1].id)
{
/* Replace A-B-C with A-C */
edge &ed_bc = b.neighbors[0].id == id_a ? b.neighbors[1] : b.neighbors[0];
int id_c = ed_bc.id;
cerr << "Performing S-transform on edges " << id_a << "-" << id_b << "-" << id_c << endl;
/* note that we have to do the replacement on both
* nodes, because edges are directed */
double new_weight = combine_s(ed_ab.weight, ed_bc.weight);
ed_ab.id = id_c;
ed_ab.weight = new_weight;
node &c = graph[ed_bc.id];
/* find the edge that goes to node b (with id_b) */
edge &ed_cb = *find_edge(c, id_b);
ed_cb.id = id_a;
ed_cb.weight = new_weight;
/* node B becomes an orphan node */
dump_dot(graph);
}
/* Don't mark if already visited */
if(visited.find(ed_ab.id) != visited.end())
continue;
/* Mark neighbors for next iteration. We don't check
* for the node already being in the open set, because
* it is a set. */
open.insert(ed_ab.id);
}
if(ydelta)
{
/* Try the Y->delta transform */
if(is_ynode(a))
{
cerr << "Performing Y-delta transform on node " << id_a << endl;
do_ydelta(graph, id_a);
dump_dot(graph);
}
}
visited.insert(id_a);
/* hack */
set<int>::iterator next = ++i;
open.erase(--i);
i = next;
}
}
}
/* source, sink */
void simp_graph(map<int,node> &graph, int s, int t)
{
dump_dot(graph);
while(!is_done(graph, s, t))
{
/* iterate over nodes in a breadth-first fashion */
simp_iter(graph, s, t, true);
}
}
int main()
{
/* construct graph from adjacency list */
map<int, node> graph;
string line;
int s, t;
cin >> s >> t;
while(getline(cin, line))
{
stringstream ss(line);
int node_id;
struct node n;
ss >> node_id;
struct edge e;
while(ss >> e.id && ss >> e.weight)
{
cerr << "Adding neighbor " << e.id << " with weight " << e.weight << endl;
n.neighbors.push_back(e);
}
graph.insert(std::pair<int, node>(node_id, n));
}
simp_graph(graph, s, t);
}
|