-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRangeLattice.java
More file actions
426 lines (369 loc) · 11.2 KB
/
RangeLattice.java
File metadata and controls
426 lines (369 loc) · 11.2 KB
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
413
414
415
416
417
418
419
420
421
422
423
424
425
426
import java.util.*;
class RangeLattice {
public static void main(String[] args) {
int num = 10;
int dim = 2;
int size = 10;
testGenTup();
testGenTups();
List<TuplePair> tups = genTups(num, dim, size);
testNaiveArea();
p(naiveArea(tups));
testTupleMethods();
testFastArea();
p(fastArea(tups));
}
static List<TuplePair> genTups(int num, int dim, int size) {
List<TuplePair> tups = new ArrayList<>();
for (int pos = 0; pos < num; pos++) {
tups.add(genTup(dim, size));
}
return tups;
}
/* size must be > 0 */
static TuplePair genTup(int dim, int size) {
TuplePair tup = new TuplePair();
tup.starts = new int[dim];
tup.ends = new int[dim];
for (int pos = 0; pos < dim; pos++) {
int start = (int) (Math.random() * size);
tup.starts[pos] = start;
tup.ends[pos] = 1 + start + (int) (Math.random() * (size - start));
}
return tup;
}
static void testGenTups() {
for (int num = 0; num < 10; num++) {
List<TuplePair> tups = genTups(num, 10, 10);
assert tups.size() == num;
}
}
static void testGenTup() {
for (int dim = 0; dim < 10; dim++) {
for (int size = 1; size < 10; size++) {
TuplePair tup = genTup(dim, size);
assert tup.starts != null;
assert tup.ends != null;
assert tup.starts.length == dim;
assert tup.ends.length == dim;
for (int pos = 0; pos < dim; pos++) {
assert tup.starts[pos] < size;
assert tup.starts[pos] < tup.ends[pos];
assert tup.ends[pos] <= size;
}
}
}
}
static void testNaiveArea() {
Collection<TuplePair> plus = new HashSet<>();
TuplePair firstTup = new TuplePair();
firstTup.starts = new int[]{0, 1};
firstTup.ends = new int[]{3, 2};
plus.add(firstTup);
TuplePair secondTup = new TuplePair();
secondTup.starts = new int[]{1, 0};
secondTup.ends = new int[]{2, 3};
plus.add(secondTup);
assert naiveArea(plus) == 5;
}
/* Only for dim = 2 */
static int naiveArea(Collection<TuplePair> tups) {
int sizeX = 0;
int sizeY = 0;
for (TuplePair tup : tups) {
sizeX = Math.max(sizeX, tup.ends[0]);
sizeY = Math.max(sizeY, tup.ends[1]);
}
boolean[][] grid = new boolean[sizeX][sizeY];
for (boolean[] row : grid) {
for (int pos = 0; pos < sizeY; pos++) {
row[pos] = false;
}
}
int area = 0;
for (TuplePair tup : tups) {
for (int x = tup.starts[0]; x < tup.ends[0]; x++) {
for (int y = tup.starts[1]; y < tup.ends[1]; y++) {
if (!grid[x][y]) {
area++;
grid[x][y] = true;
}
}
}
}
return area;
}
static void testTupleMethods() {
TuplePair firstTup = new TuplePair();
firstTup.starts = new int[]{0, 1};
firstTup.ends = new int[]{3, 2};
TuplePair secondTup = new TuplePair();
secondTup.starts = new int[]{1, 0};
secondTup.ends = new int[]{2, 3};
TuplePair thirdTup = new TuplePair();
thirdTup.starts = new int[]{1, 0};
thirdTup.ends = new int[]{2, 3};
assert !firstTup.equals(secondTup);
assert secondTup.equals(thirdTup);
}
static void testFastArea() {
List<TuplePair> plus = new ArrayList<>();
TuplePair firstTup = new TuplePair();
firstTup.starts = new int[]{0, 1};
firstTup.ends = new int[]{3, 2};
plus.add(firstTup);
TuplePair secondTup = new TuplePair();
secondTup.starts = new int[]{1, 0};
secondTup.ends = new int[]{2, 3};
plus.add(secondTup);
System.out.println(fastArea(plus));
assert fastArea(plus) == 5;
}
static int fastArea(List<TuplePair> tups) {
int num = tups.size();
int dim = tups.get(0).starts.length;
// Prepare bounds for use in propagation.
int[] bounds = new int[dim];
for (TuplePair tup : tups) {
for (int pos = 0; pos < dim; pos++) {
bounds[pos] = Math.max(bounds[pos], tup.ends[pos]);
}
}
// Prepare a bounding tuple to get the final area.
TuplePair boundTup = tups.get(0).copy();
for (int pos = 0; pos < dim; pos++) {
boundTup.starts[pos] = 0;
int upper = 1;
while (upper < bounds[pos]) {
upper *= 2;
}
boundTup.ends[pos] = upper;
}
p("Prepared a bounding tuple " + boundTup.toString());
/*
// Compress the coordinates by sorting in each dimension. A coordinate can now be just a logn bit number.
int[][] edges = new int[tups[0].starts.length][];
for (int i = 0; i < dim; i++) {
TreeSet<Integer> coords = new TreeSet<>();
for (int j = 0; j < num; j++) {
coords.add(tups[j].starts[i]);
coords.add(tups[j].ends[i]);
}
ArrayList<Integer> coordList = new ArrayList<Integer>(coords);
edges[i] = new int[coords.size()];
for (int pos = 0; pos < edges[i].length; pos++) {
edges[i][pos] = coordList.get(i);
}
}
*/
HashMap<TuplePair, Integer> covered = new DefaultHashMap<>(0);
for (TuplePair tup : splitTups(tups, new HashSet<>())) {
covered.put(tup, tup.volume()); // Cover this whole tup
//p("Starting to propagate " + tup.toString());
propagate(tup, covered, new HashSet<>(), bounds);
}
p("Calculations done!");
//p(covered.toString());
return covered.get(boundTup); // The whole space
}
static Set<TuplePair> splitTups(List<TuplePair> trueTups, HashSet<TuplePair> splitTups) {
List<TuplePair> tups = new ArrayList<>(trueTups);
while (!tups.isEmpty()) {
TuplePair tup = tups.get(0);
boolean primitive = true;
for (int splitDim = 0; splitDim < tup.starts.length; splitDim++) {
if (!tup.primitiveIn(splitDim)) {
primitive = false;
tups.add(tup.leftSplit(splitDim));
tups.add(tup.rightSplit(splitDim));
break;
}
}
if (primitive) {
splitTups.add(tup);
}
tups.remove(0);
}
p("Splitting complete!");
return splitTups;
}
/**
* Propagate a node's cover to all ancestors.
* Perhaps a log factor could be saved with an iterative approach.
* @param visited A memo table so we can stop if already visited.
*/
static void propagate(TuplePair tup, HashMap<TuplePair, Integer> covered, HashSet<TuplePair> visited, int[] bounds) {
//p("Augmenting " + tup.toString());
// I think it can be proved by induction that visiting some path from new node to ancestor, in increasing order of size, guarantees we get the right area.
if (visited.contains(tup)) {
return;
}
visited.add(tup);
for (int splitDim = 0; splitDim < tup.starts.length; splitDim++) {
if (tup.starts[splitDim] == 0 && tup.ends[splitDim] >= bounds[splitDim]) {
continue;
}
TuplePair leftSib = tup.leftSib(splitDim);
TuplePair rightSib = tup.rightSib(splitDim);
TuplePair parent = merge(leftSib, rightSib);
int newCover = covered.get(parent);
newCover = Math.max(newCover, covered.get(leftSib) + covered.get(rightSib));
covered.put(parent, newCover);
propagate(parent, covered, visited, bounds);
}
}
static TuplePair merge(TuplePair left, TuplePair right) {
TuplePair parent = new TuplePair();
parent.starts = left.starts;
parent.ends = right.ends;
return parent;
}
static void p(int i) {
System.out.println(i);
}
static void p(String s) {
System.out.println(s);
}
static void wait(int time) {
try {
Thread.sleep(time);
} catch(InterruptedException ex) {
Thread.currentThread().interrupt();
}
}
}
class DefaultHashMap<K,V> extends HashMap<K,V> {
protected V defaultValue;
public DefaultHashMap(V defaultValue) {
this.defaultValue = defaultValue;
}
@Override
public V get(Object k) {
return containsKey(k) ? super.get(k) : defaultValue;
}
@Override
public String toString() {
String self = "";
for (K key : keySet()) {
self = self + key.toString() + " " + get(key) + "\n";
}
return self;
}
}
class TuplePair {
int[] starts;
int[] ends;
@Override
public int hashCode() {
int hash = 1;
for (int pos = 0; pos < starts.length; pos++) {
hash = 31*hash + starts[pos];
hash = 31*hash + ends[pos];
}
return hash;
}
@Override
public boolean equals(Object otherObj) {
if (!(otherObj instanceof TuplePair)) {
return false;
}
TuplePair other = (TuplePair) otherObj;
if (starts.length != other.starts.length) {
return false;
}
for (int pos = 0; pos < starts.length; pos++) {
if (starts[pos] != other.starts[pos]
|| ends[pos] != other.ends[pos]) {
return false;
}
}
return true;
}
int volume() {
int volume = 1;
for (int pos = 0; pos < starts.length; pos++) {
volume *= ends[pos] - starts[pos];
}
return volume;
}
// All these methods will have several superfluous log factors for now.
// Even calling these methods iteratively like this, rather than having them generate all tuples in one pass, gives a log factor or 2.
TuplePair leftSib(int splitDim) {
int fact = commonTwos(splitDim);
int left = starts[splitDim];
if ((left / fact) % 2 == 0) {
return this; // [ this | ]
}
TuplePair sib = copy();
sib.starts[splitDim] = left - fact;
sib.ends[splitDim] = left;
return sib; // [ sib | this ]
}
int commonTwos(int splitDim) {
int left = starts[splitDim];
int right = ends[splitDim];
int fact = 1;
while (left % 2 != 1 && right % 2 != 1) {
fact *= 2;
left /= 2;
right /= 2;
}
return fact;
}
TuplePair copy() {
TuplePair sib = new TuplePair();
int dim = starts.length;
sib.starts = new int[dim];
sib.ends = new int[dim];
System.arraycopy(starts, 0, sib.starts, 0, dim);
System.arraycopy(ends, 0, sib.ends, 0, dim);
return sib;
}
TuplePair rightSib(int splitDim) {
int fact = commonTwos(splitDim);
int right = ends[splitDim];
if ((right / fact) % 2 == 0) {
return this; // [ | this ]
}
TuplePair sib = copy();
sib.starts[splitDim] = right;
sib.ends[splitDim] = right + fact;
return sib; // [ this | sib ]
}
boolean primitiveIn(int splitDim) {
return splitCoord(splitDim) == starts[splitDim];
}
/* Arbitrarily split out the lowest power of two at one of the two sides. */
TuplePair leftSplit(int splitDim) {
int splitCoord = splitCoord(splitDim);
TuplePair split = copy();
split.ends[splitDim] = splitCoord;
return split;
}
int splitCoord(int splitDim) {
int fact = commonTwos(splitDim);
int start = starts[splitDim];
int end = ends[splitDim];
if ((end / fact) % 2 == 1) {
if (start < end - fact) {
return end - fact;
}
}
if ((start / fact) % 2 == 1) {
if (start + fact < end) {
return start + fact;
}
}
return start; // No protocol for the case when a split is impossible.
}
TuplePair rightSplit(int splitDim) {
int splitCoord = splitCoord(splitDim);
TuplePair split = copy();
split.starts[splitDim] = splitCoord;
return split;
}
@Override
public String toString() {
return Arrays.toString(starts) + " " + Arrays.toString(ends);
}
}