In this problem http://www.spoj.com/problems/PLD/ , what is the best way to use rabin_karp?
To precalculate hashes,or add-delete numbers? Cause I am stuck at this 4 hours now... :(
# | User | Rating |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3831 |
3 | Radewoosh | 3646 |
4 | jqdai0815 | 3620 |
4 | Benq | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | gamegame | 3386 |
10 | ksun48 | 3373 |
# | User | Contrib. |
---|---|---|
1 | cry | 164 |
1 | maomao90 | 164 |
3 | Um_nik | 163 |
4 | atcoder_official | 160 |
5 | -is-this-fft- | 158 |
6 | awoo | 157 |
7 | adamant | 156 |
8 | TheScrasse | 154 |
8 | nor | 154 |
10 | Dominater069 | 153 |
In this problem http://www.spoj.com/problems/PLD/ , what is the best way to use rabin_karp?
To precalculate hashes,or add-delete numbers? Cause I am stuck at this 4 hours now... :(
Name |
---|
Substring [l..r] is a palindrome when it equals to its reversed version. So you can precalc hashes for s and for reversed s. Then you may check for all k-substrings if they are equal to its reversed versions.
The time to hash a substring,is the same with pass it with a for loop right? So instead precalculate all hashes,why not to check with naive way??
Except if I calculate the hash via adding and deleting new and last character. I know How to do that in normal string,but in reversing string,I need to delete in reversing mode of rabin-karp.
For example if I have "asd" as string,rabin karp says:
(a*BASE + s)*BASE + d, and when I delete I says -=a*BASE^2.
but in reversing string,I need to delete from the other side,so I should say: -d,and after /=BASE. That gives me strange numbers....
I cant get it!!!
The time to hash a substring,is the same with pass it with a for loop right?
There is a way to calculate polynomial hash of substring in O(1) with O(n) precalc. It's like prefix-sums.
Ok,I figured out !!! Thanks for the time!!!