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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
|
#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();
}
int count_edges(node &n, int id)
{
int count = 0;
for(vector<edge>::iterator it = n.neighbors.begin(); it != n.neighbors.end(); it++)
if(it->id == id)
count++;
return count;
}
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 erase_edges(map<int, node> &graph, int id_a, int id_b)
{
cerr << "Erasing edges " << id_a << "-" << id_b << endl;
node &a = graph[id_a], &b = graph[id_b];
vector<edge>::iterator it;
while((it = find_edge(a, id_b)) != a.neighbors.end())
a.neighbors.erase(it);
while((it = find_edge(b, id_a)) != b.neighbors.end())
b.neighbors.erase(it);
}
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();
}
double combine_deltay(double w1, double w2, double w3, double adj1, double adj2)
{
return adj1 * adj2 / ( w1 + w2 + w3 );
}
void do_deltay(map<int, node> &graph, int id_a, int id_b, int id_c)
{
node &a = graph[id_a], &b = graph[id_b], &c = graph[id_c];
double wa = find_edge(b, id_c)->weight;
double wb = find_edge(a, id_c)->weight;
double wc = find_edge(a, id_b)->weight;
double w1 = combine_deltay(wa, wb, wc, wb, wc);
double w2 = combine_deltay(wa, wb, wc, wa, wc);
double w3 = combine_deltay(wa, wb, wc, wa, wb);
int id_d = graph.rbegin()->first + 1;
node new_node;
map<int, node>::iterator it = graph.insert(pair<int, node>(id_d, new_node)).first;
/* stupid hack */
node &d = graph[id_d];
insert_edge(graph, id_a, id_d, w1);
insert_edge(graph, id_b, id_d, w2);
insert_edge(graph, id_c, id_d, w3);
erase_edges(graph, id_a, id_b);
erase_edges(graph, id_a, id_c);
erase_edges(graph, id_b, id_c);
}
bool do_p_transforms(map<int, node> &graph, int node_id, int other_node = -1)
{
node &a = graph[node_id];
bool progress = false;
/* 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);
if(other_node < 0)
dump_dot(graph);
progress = true;
}
}
}
return progress;
}
/* ydelta and deltay control whether the Y->delta and delta->Y
* transforms are performed, respectively */
bool simp_iter(map<int,node> &graph, int s, int t, bool ydelta, bool deltay)
{
bool progress = false;
/* 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 */
progress |= 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);
progress = true;
}
/* 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(id_a != s && id_a != t && is_ynode(a))
{
cerr << "Performing Y-delta transform on node " << id_a << endl;
do_ydelta(graph, id_a);
dump_dot(graph);
progress = true;
}
}
if(deltay)
{
/* Try the delta-Y transform (this is the inverse of
* Y-delta, so we must be careful about enabling
* it). */
/* Look for any pair of nodes that are directly
* connected (only one edge between them). We don't
* have to worry about multiple adjacent edges because
* P-transforms are done earlier. */
for(int i = 0; i < a.neighbors.size(); i++)
{
for(int j = 0; j < a.neighbors.size(); j++)
{
if(i == j)
continue;
int id_b = a.neighbors[i].id;
int id_c = a.neighbors[j].id;
node &b = graph[id_b];
if(find_edge(b, id_c) != b.neighbors.end() &&
count_edges(b, id_c) == 1)
{
cerr << "Performing delta-Y transform on " << id_a << ", " << id_b << ", " << id_c << endl;
do_deltay(graph, id_a, id_b, id_c);
dump_dot(graph);
progress = true;
}
}
}
}
visited.insert(id_a);
/* hack */
set<int>::iterator next = ++i;
open.erase(--i);
i = next;
}
}
return progress;
}
/* 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, 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);
cerr << "Equivalent resistance: " << graph[s].neighbors[0].weight << endl;
}
|