Search found 13 matches
- Mon Sep 05, 2011 11:36 pm
- Forum: Crossflip
- Topic: Code optimization
- Replies: 57
- Views: 165297
Optimizing the O(n^3) Gaussian Elimination e.g. by grouping booleans to integers took me to level ~400. Then I redesigned my algorithm. Now it has less than O(n^2) complexity and solves even the last levels in less than 20 seconds using Java without any optimization at all. Algorithm beats implement...
- Tue Jul 07, 2009 6:25 pm
- Forum: Challenges Solved
- Topic: Quinine
- Replies: 20
- Views: 2298
- Wed Feb 25, 2009 1:59 pm
- Forum: Challenges
- Topic: Captcha
- Replies: 13
- Views: 21959
- Wed Feb 25, 2009 1:03 pm
- Forum: Challenges
- Topic: Captcha
- Replies: 13
- Views: 21959
- Wed Jan 28, 2009 7:55 pm
- Forum: Challenges Solved
- Topic: Telecran
- Replies: 24
- Views: 3776
- Thu Jan 22, 2009 9:52 pm
- Forum: Challenges Solved
- Topic: Captcha
- Replies: 14
- Views: 2552
I used principal component analysis to calculate the rotation and didn't reduce the size of the images but sorted them according to the sum of all pixel's color values and only correlated each picture with 100 neighbors. I expected that too many similar images correlate well and already planned what...
- Wed Jan 14, 2009 6:38 pm
- Forum: Challenges
- Topic: Enigma
- Replies: 5
- Views: 9402
- Wed Jan 14, 2009 10:55 am
- Forum: Challenges Solved
- Topic: Brokenest Keys
- Replies: 26
- Views: 3870
- Tue Nov 25, 2008 8:18 pm
- Forum: Challenges Solved
- Topic: Breakout
- Replies: 35
- Views: 4657
- Mon Nov 24, 2008 9:33 pm
- Forum: Challenges Solved
- Topic: Not Smaller Yet
- Replies: 11
- Views: 1006
BWT is the first step in the compression algorithm of bzip2. It sorts the letters such that those appearing in a similar surrounding come together. E.g. a 'q' is always followed by a 'u', so the q's will appear only within a certain region of the BWT-sequence. Therefore this sequence is easier to co...
- Mon Nov 24, 2008 5:23 pm
- Forum: Challenges Solved
- Topic: Not Smaller Yet
- Replies: 11
- Views: 1006
I suppose, 34 defines the beginning of the original text. Since the BWT ist rotation invariant (abcde has the same bwt-result as e.g. bcdea or deabc), you cannot otherwise know where the text starts in the backtransformed sequence. But I thought that this should be the position of the last (or the f...
- Sat Nov 22, 2008 10:27 pm
- Forum: Challenges
- Topic: King Mouse
- Replies: 19
- Views: 25696
This site was recommended in the most popular German computer magazine c't about one month ago. Therefore many Germans (me too) joined this forum within the last weeks and started solving challenges. And the magazine said that everyone who solved more than 50 challenges should apply for a job there :)
- Wed Nov 12, 2008 7:56 pm
- Forum: Challenges Solved
- Topic: Really Small Mouse
- Replies: 9
- Views: 1751
Really Small Mouse
I have to admit that I cheated at this challenge... only checked memory cells 0 to 9 for the maximum and submitted until I passed the five tests :-*) The deterministic version of my program has size 28. Does anybody have a 'real' solution?