Spanning Tree Solution for challenge 3 #8
emmanuel2406
started this conversation in
Show and tell
Replies: 2 comments 1 reply
-
Hey, I have been thinking of this method for quite a while... See page 4 |
Beta Was this translation helpful? Give feedback.
0 replies
-
we had a similar idea couldn't actually implement it. Nice one guys! |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We found a clever spanning tree heuristic to encourage the connectivity constraint for the final challenge
Overview of algorithm:
Repeated Sampling.
Note that this spanning tree heuristic has no false positives, however, there may be false negatives when good cuts have a higher than normal intersection with the segment tree.
To deal with this we sample k different segment trees for k small (k = 2, 3), and then this amplifies the probability of no false negatives.
Yours sincerely,
Harvard Bloch Heads
Beta Was this translation helpful? Give feedback.
All reactions