Pseudo-Isomorphic Substrings

  • + 0 comments

    I'm using C# and highest I could achieve right now is 53% pass test cases, all of the remaining testcase fails are either "abort called : Out of Memory" or runtime too long. I used Hash tables, and for the large input string it goes above 1 million hash size which is what I think makes it throw out of memory, any ideas how this can be avoided? should I redo and try a new approach? because on my local machine I can run the tests properly. I've tried optimizing as much as I can too.