Hello Everyone,
I would like to invite you all to "CodeCraft 08", a programming contest conducted by IIIT, Hyderabad as part of their technical fest "Threads". The contest is scheduled on 27th January. The contest is open to everyone. For more details and to register for the event, please visit ...
Search found 5 matches
- Fri Jan 11, 2008 12:49 pm
- Forum: Other words
- Topic: Invitation for a Programming Contest : CodeCraft 08
- Replies: 0
- Views: 2031
- Mon Jan 01, 2007 6:51 pm
- Forum: Algorithms
- Topic: Suffix Arrays
- Replies: 7
- Views: 5408
- Mon Jan 01, 2007 11:21 am
- Forum: Algorithms
- Topic: Suffix Arrays
- Replies: 7
- Views: 5408
- Sat Dec 30, 2006 8:01 pm
- Forum: Volume 5 (500-599)
- Topic: 563 - Crimewave
- Replies: 42
- Views: 24390
Hi,
I don't understand the fact that a bank can be robbed more than once ... I did exactly same as ImLazy has written above but I always get WA :cry::cry:. My programs output matches with the above output on all the 50 cases [ I suppose the output shown above is correct ]. Can somebody help me out ...
I don't understand the fact that a bank can be robbed more than once ... I did exactly same as ImLazy has written above but I always get WA :cry::cry:. My programs output matches with the above output on all the 50 cases [ I suppose the output shown above is correct ]. Can somebody help me out ...
- Sat Dec 30, 2006 5:42 pm
- Forum: Algorithms
- Topic: Suffix Arrays
- Replies: 7
- Views: 5408
I think you don't actually need to store all the suffixes separately. What you can do is just store the indexes in a single dimentional array and whenever you have to access any particular suffix just use the position stored in the suffix array to do that. A very naive approach to build the suffix ...